Home Forums Report Bugs Issue with data not showing

Issue with data not showing

Viewing 4 posts - 1 through 4 (of 4 total)
  • #23498

    We have an issue where by we’re seeing gaps on our line chart where as we would like the lines to join up

    See example:

    https://jsfiddle.net/andren/oj6k1u7t/3/

    #23500

    @operationsteam,

    The gap you observe in the chart is dues to null dataPoints. You can draw a line between 2 adjacent non-null dataPoints by setting connectNullData property in dataSeries level to true. Please take a look at this updated JSFiddle.


    Vishwas R
    Team CanvasJS

    #23559

    Thanks for your reply. Any reason why we don’t see the dots either (e.g. if we don’t want the line but just want to see the data points)?

    #23560

    @operationsteam,

    Markers (dots) to the null data points will not be shown as the axis is numeric, where you can’t denote the position of null. However if you like to show markers and connect them with a line-segment without using connectNullData property, you can change null values to 0.


    Vishwas R
    Team CanvasJS

Viewing 4 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic.