I need the ability to not draw a line between certain points in a line series. For example, say you had the following points:
1, 10
2, 20
3, 50
4, 30
5, 10
If the Y scale only went to 40, then there would be a break between points 2 and 4 above. In other words you would have a line connecting 1 and 2 and another line connecting 4 and 5, but nothing in between.
If I simply delete point 3, I end up with a line from 2 to 4 which isn't what I'm looking for.
Thank you.
Hi,
I am unable to see your images. Could you try sharing them again?
-Graham
I loaded these images!
Sometimes after zooming and scrolling I get this snark.
At the beginning:
After zooming and scrolling (a snark):
How can I avoid this?
Truly yours Mikhail
hi,
Your images aren't showing and I'm uncertain what you mean by snark. Could you clarify? Is there a way you can provide a sample project that reproduces the issue?
This helps. But sometimes after zooming and scrolling I get this snark.
I like the idea - we didn't consider this approach because all of our series (plural) are in the same IEnumeralbe<T>
But your suggestion made me think - we could create a CollectionViewSource, set its source to the IEnumerable<T>, and set its filter so that it removes the points from the view that are double.NaN, but just for the appropriate series.
Each series can have its own CollectionViewSource and its own independent filter...
Thanks for the help :)
-Mike