Is there any method in the API for bringing the points of a selected Series to the front of the view (i.e. in front of the other points)? I tried setDepth() and setZOrder() (the latter I found were only for 3D-charts), but with no luck.
Thanks in advance
M
Bringing series to front
Hello M,
You can bring Series to the front by using the exchange method.
eg.
Regards,
Marc Meumann
You can bring Series to the front by using the exchange method.
eg.
Code: Select all
tChart.getSeries().exchange(0, 1);
//where the args are the index locations of the Series to be
//exchanged in the SeriesList
Marc Meumann
Steema Support