{% import '@OroChart/macros.html.twig' as chart %} {# Chart variables format: "options": "name": "chart_name", "data_schema" => array( "label" => array("field_name" => "name", "label" => "First Name", "type" => "string"), "value" => array("field_name" => "salary", "label" => "Salary", "type" => "money"), ), "settings" => array( "foo" => "bar" ), "config": { /** Chart config from in format of oro/charts.yml */ } "data": [ {"label": "In progress", "value": 100, "fraction": 0.1}, {"label": "Lost", "value": 500, "fraction": 0.5}, {"label": "Won", "value": 400, "fraction": 0.4}, ] #} {% if data|length>0 %} {{ chart.renderChart(data, options, config, isMobileVersion()) }} {% else %}
{{ 'oro.dashboard.no_data_found'|trans }}
{% endif %}