score:1

Accepted answer

you can put the csv values in an array and parse the values using json. example,

        series: [{
           name: 'day',
           data: json.parse("[" + s1 + "]")  // s1 contains the csv values
        ]}

score:0

in general csv holds values separated by commas, these values will be in string format.

while highcharts accept data to be present as comma separated array of numbers.

please check if they are strings or numbers and parse the values to numbers if required.

hope this will help you to solve the issue.


Related Query

More Query from same tag