-1👍
You need to map your data to required format. CartJs requires data
parameter which is in this format data: [{x:'2016-12-25', y:20}, {x:'2016-12-26', y:10}]
so you can do something
data: jsonData.map(item => ({x: item.group, y: Number(item.amount)}));
- Chartjs-Chart JS Layered Vertical Bar Chart
- Chartjs-Chart.js zoom plugin: Unexpected identifier error in console
Source:stackexchange.com