-
-
Notifications
You must be signed in to change notification settings - Fork 6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How can I don't draw lines when data absent at some point? #2968
Comments
create two data sets for each line segment. |
If I have data at these point: So the data absent at x = 3, 7 then I have to create three data sets? |
I'm afraid so. one set for one line segment. I used to add this feature, however it's kind of buggy when thinking about filling beneath line area, so the workaround is use multiple data sets so far. if you don't need filling, that's easier you can just override |
Finally, I modify the I define data not existed if y == -999, The dataSet of Heartbeat are [80,90,-999,80,68,-999,-999,95] |
you can use |
If I have frequently data, but sometimes data absent at some point.
For example:
The interval of the dataset are same, in this case is 1.
So the data absent at x = 5, 6.
How can I don't draw line between x = 4 and x = 7 ?
Just like this:
The text was updated successfully, but these errors were encountered: