Hello,
in my dataPoints sometimes I use to put some “null” values when I’ve no data for a certain point, but when canvasjs encounter this “null” value it seems to convert it to zero and the line starts from Y=0
Eg if I’ve these 3 datapoints (1,null), (2,5), (3,6) the rendering enging will show 2 segments, the first one from (1,0) to (2,5) and the second one from (2,5) to (3,6). Is there a way to avoid showing the first segment? I would that canvasjs skips all lines having null values as Y coordinate.