Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1300
make indexed numeric series
posted

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

  • 53790
    posted

    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