in my CSV file, each line contains timeStamp and some values that I want to display as separated flot charts.
Flot expects array of pairs as [timeStamp , value] but I have arra of struct [timeStamp, val1,val2, val3]
Is there a simple solution to use such struct in Flot? or that I must duplicate my timeStamp for each csv.column ? e.g. [time,val1], [time,val2] . . .
similiar question, with no answer - Plotting multiple datasets in Flot from a multidimensional array