New to javascript here - using Flot/Jquery: I am looking to store additional information to be displayed for hovering over points in the data array. i.e. data[i] = [x, y, 'additional info'] or [[x, y], 'additional info'] -
The Flot documentation only has this to say: The raw data format is an array of points: [ [x1, y1], [x2, y2], ... ]
How is it possible to specify which columns to use for X and Y as in y = data[i][1], x = data[i][0] ?