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
Hide/Unhide a plot in an Ultrachart
posted

Hi ,

I would like to know how I can hide or unhide a plot in an ultrachart by using a checkbox please?

Thanks

Parents
No Data
Reply
  • 53790
    posted

    Hello,

    I`m not familar with your scenario, but maybe the best option could be if you are using Series into your chart. Than you could set Visible property to true or false depending of the checkbox. For example:

    NumericSeries ns = new NumericSeries();

    ns.Visible = false;

    Let me know if you have any questions.

    Regards

Children