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
1401
Datapoints not appearing in the Winchart with Logarithmic Y Axis.
posted

Hi,

     We have a line chart with logarithmic y axis. This chart has 7 datapoints say Point A,B,C,D,E,F,G. If i make one datapoint(say C) 0, then all the data ponts after that(D,E,F,G) will not appear on the chart. We want only the datapoint(i.e: C) to disappear from the chart, the rest all points(A,B,D,E,F,G) which are non zero should appear with their respective values.

Please help.

 

Regards,

Kumar.

  • 17605
    posted

    The logarithmic axis doesn’t support 0 values, so you need to remove them. You can try using:

    this.ultraChart1.Data.IncludeColumn(3, false);