JA
James
January 6, 2012 06:39 PM UTC
I actually managed to solve this one myself. Turns out that the empty point is determined by a value of Double.Nan and not 0. So for the following points I get the desired result:
points.Add(new ChartPoint(10, 10));
points.Add(new ChartPoint(20, 20));
points.Add(new ChartPoint(30, 30));
points.Add(new ChartPoint( 40, 30));
points.Add(new ChartPoint( 50, Double.NaN));
points.Add(new ChartPoint( 60, 30));
points.Add(new ChartPoint( 70, 30));
points.Add(new ChartPoint( 80, 40));
points.Add(new ChartPoint( 90, 50));
Problem resolved.
MP
Michael Prabhu M
Syncfusion Team
January 9, 2012 01:25 PM UTC
Hi James,
Thanks for the update, we are glad that your issue has been resolved. Please let us know if you need further clarification.
Thanks,
Michael Prabhu.