Hi,
Is it possible to show a 'gap' in a line chart if the point has no value (chart 1 in the attached pic)? or connect the two points(point 2 and 4) directly (chart 2)?
Data:
Best regards,
Zach
Thanks a lot Elena .I had the same problem .
http://es.infragistics.com/community/forums/p/105482/498740.aspx#498740
Sorry for delay. Your sugguestion works great. Thanks!
Hello Zach,
I was just wondering did you have a chance to try my suggestion. If you still need any assistance on the matter, please do not hesitate to ask.
You can use UnknownValuePltting property of the Line series and set it to LinearInterpolate like this:
.Series(s =>
{
s.Line("ActiveCustomers").UnknownValuePlotting(UnknownValuePlotting.LinearInterpolate)
.XAxis("Label")
.YAxis("Count")
.ValueMemberPath(cc => cc.CustomerCount);
})
this property is described here:
http://help.infragistics.com/jQuery/2012.2/ui.igdatachart
just go to the tab “Options” then expand “series”.
Please let me know if this helps.