Reputation: 43
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
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