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.
The logarithmic axis doesn’t support 0 values, so you need to remove them. You can try using:
this.ultraChart1.Data.IncludeColumn(3, false);