I'm using Highcharts plugins "dragable points" and "export-csv".
I'm using these to place circles on a chart with a background drawing. This is so I can use these points to change colour as the data for that point updates.
My problem is I'm trying to export the "Name" of the point in the csv file and I'm only able to get the x and y values.
Data I'm loading in looks like this
{name: 'd1', color: '#FF0000', x: 10, y: 100},{name: 'd2', color: '#FF0000', x: 30, y: 100}
This places the points in a set location and then I'm using the dragable plugin to move the points to the new locations. Once there I would like the export-csv plugin to output the "name:" along with the "x: and y:" values.
Question: Is there a way to set the export-csv plugin to include the name of the point?