I currently have the charts working fine using a js file with this format
varXXX = [{x:, y:, ,,,},{},{},{}...]
varYYY = [{x:, y:, ,,,},{},{},{}...]
This is identified in the chart by using
series[{name: 'SomeName', data: 'XXX', id: 'XXX'},{name: 'SomeotherName', data: 'YYY', id: 'YYY'}]
what I am wanting to do is mix this data and somehow identify each data block by an identifier as a single data block eg.
x, y, id, marker
123, 456, XXX, circle
2341, 45184, YYY, square
129, 458, XXX, circle
133, 446, XXX, circle
143, 456, XXX, circle
2342, 45084, YYY, square
2343, 47084, YYY, square
I have tried seriesMapping of a CSV, and putting an Id in the map but this doesn't produce any data.
data: {csvURL: '\\\someAdresss\myFile.csv',
seriesMapping: [{x: 0, y: 1, id: 2, marker:3}]}
I am plotting this as a Spline.
Regards
CSommer