Hello,
I am configuring igdatachart for my application
Case : My datachart is with line series having multiple null values, and I am using
unknownValuePlotting =linearInterpolate create straight line.
Its plotting the chart as shown bellow. (As it is showing shaded region which should not be there)
If I zoom some portion
Then the shaded region disappears Like
I am using data which is attached and following Data series configuration
name: "series", title: strUnitName, type: "line", xAxis: "xAxis", yAxis: d.axisName, valueMemberPath: d.attrName, showTooltip: !0, tooltipTemplate: "tooltipTemplate", toolTipColor: ChartColor, isTransitionInEnabled: !0, isHighlightingEnabled: !0, unknownValuePlotting: "linearInterpolate", brush: ChartColor, isHighlightingEnabled: !0, isCustomCategoryStyleAllowed: !1,
Data As per following file :
Raw Data.xls
Thank you for contacting us!
I am unable to apply the file you have provided me.
Also I am unable to reproduce the behavior, that you are seeing on your side.Could you please, provide me with a sample, that reproduces this behavior, for investigation. This will be of great help for more accurate and fast indication of the problem.
Best Regards,
Hristo
Hi Hristo,
You can find the sample at JSfiddle, please go through following URL:
http://jsfiddle.net/100rabh2010/8uvhjxtg/
Regards,
Saurabh Deshmukh
Hello Saurabh ,
Thank you for the sample!
The behavior is caused, due to the series squashing. Since you have big amount of data records, the chart squashes the series, in order to visualize it.To prevent the shadowing, you can set "resolution: 0" .
Please, let me know if you have any further questions.
Best Regards,Hristo
Thank you very much Hristo. This solution works perfectly.