Is it possible to add values to a series with y,x value and x label value?
Jørgen
Add series with x,y,lablelvalue
Re: Add series with x,y,lablelvalue
Hi Jørgen,
I'm afraid there's a function to add the three arrays at once, but you can add the y values and the labels at once, and then assign the data.x array.
Ie:
I'm afraid there's a function to add the three arrays at once, but you can add the y values and the labels at once, and then assign the data.x array.
Ie:
Code: Select all
Chart1.addSeries(new Tee.Line([5,3,2,7], ["point1","point2","point3","point4"]));
Chart1.series.items[0].data.x=[2,4,5,6];
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |