Home Forums Chart Support how to create Multiple Charts on page Reply To: how to create Multiple Charts on page

#10574

@ask123,

Parsing your CSV data according to the format accepted by CanvasJS should work fine in your case. Please find the code-snippet related to parsing data from your CSV format.
dataPoints.push({ x: parseInt(rowData[1]), y: parseInt(rowData[2]), name:rowData[0] });


Sanjoy