I have large amounts of data formatted in JSON formats, I recently scripted the data to conform to flot's data set, except for one problem, the data has no x values.
EG:
{ label: "testMetric1", data: [12,314,123,41] }
I want to simply graph these values as y values. is there a way to tell flot to just assume the x series will be sequential (ie graph 12 at x = 1, graph 314 at x = 2, etc)