Question

I have a specific needs when i look into Area with missing points of Highchart demo.

I want a line chart with irregular time series data that will break line if no data available on displayed date.

is that possible?

Was it helpful?

Solution 3

I have the answer for now which I got the answer straight from the creator of Highchart

you may refer to his answer here: https://github.com/highslide-software/highcharts.com/issues/3043#issuecomment-42819076

OTHER TIPS

Placing a null in your series data will do this exact thing:

series: [{
    data: [29.9, 71.5, 106.4, 129.2, null, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
}]

Here's an example.

enter image description here

You can use highstock.js and set oridinal parameter as false

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top