Chartjs-ChartJs create Chart from array

0👍

The issue was that the Ajax request was async. So the chart was drawn without any data.

The ajax request has to have async: false, so the data can be loaded and after that the chart draws with the data.

Leave a comment