[Chartjs]-Chart.js shows no graphs

2👍

You are missing creating chart itself:

var myChart = new Chart(chartData.ctx).Line(chartData.chart); //'Line' defines type of the chart.

2👍

You are only defining how the object should look like but you forgot to create it itself.

0👍

Leave a comment