I have a simple single series column chart showing the number of sales for each department. Am I able to set the column colour for each department to a colour code saved in my sql tables and specificed in my data source? I was able to do this with the Kendo chart in a different application.
My chart code is.....
<ej-chart id="chart3" is-responsive="true">
<e-chart-series>
<e-series datasource="ViewBag.dataSource" x-name="Department" y-name="Sales" fill="#547bbd" type="Column" name="Departments">
<e-chart-tooltip visible="true"></e-chart-tooltip>
</e-series>
</e-chart-series>
<e-size height="600" width="100%"></e-size>
<e-primary-x-axis label-rotation="45"></e-primary-x-axis>
<e-primary-y-axis label-format="{value}"></e-primary-y-axis>
</ej-chart>