user9675246
user9675246

Reputation: 43

How to skip a value in highcharts.js?

charts

I have the chart on the left, and I want to convert it to the chart on the right. Basically, if the data point has a value of 0, I want to delete that data point and connect the previous data point to the next one. I can't set the value of the data point to null, since the graph will be interrupted in this case.

Any help will be appreciated. Thanks.

Upvotes: 1

Views: 98

Answers (1)

Kristianmitk
Kristianmitk

Reputation: 4778

I can't set the value of the data point to null, since the graph will be interrupted in this case.

You can avoid interrupts if you set connectNulls: true.

Upvotes: 2

Related Questions