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
Hello Zach,
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.
Thanks a lot Elena .I had the same problem .
http://es.infragistics.com/community/forums/p/105482/498740.aspx#498740