Hi ,
I am wondering if it is possible to do an index numerictimeseries (I have to fill an ultragraph with the same name but different values).
Something like NumericSeries[] VolumeNum = new NumericSeries();
VolumeNum[iter] = ....
Thanks
Hello Eltorfuerte,
At that moment we have not such kind functionality. I`m not familar with your scenario and your final goal, but maybe you could try to used our Series Collection . For example:
NumericSeries columnSeries = new NumericSeries();ultraChart1.Series.Add(columnSeries);ultraChart1.Series[0]
Let me know if you have any questions.
Regards