{% if showChart is defined and not showChart %}
{% endif %} {% if showChart is defined and showChart %} {% js %} new Craft.Commerce.Chart('{{ namespaceId }}', { chart: { type: 'line', data: { labels: {{ labels|json_encode|raw }}, datasets: [ { label: Craft.escapeHtml(Craft.t('commerce', 'Order count')), yAxisID: 'count', data: {{ data|json_encode|raw }} } ] }, options: { legend: { display: false }, scales: { yAxes: [{ id: 'count', display: false, }], xAxes: [{ display: false }] } } } }); {% endjs %} {% endif %}