Hi Peter,
I am looking at the Scatter chart in your Java library. I see that the ScatterLayers are added as follows.
ScatterLayer scatter1 = c.addScatterLayer(dataX1, dataY1, "AAAAAA ", Chart.CircleSymbol, 9,
0x6666ff);
My question is as follows:
If I want to add multiple scatter layers which will be known to me only at run time. how can I male the above statement dynamic?
Assume that I will get the following parameters in an array of objects - dataX1, dataY1, Series name, color. Also in my case there will be only 1 value for X & Y in each series i.e. each series will represent only a single point |