Hi All,
We have included in our wpf chart vertical slices to show markers on data series, but when a vertical slice is added, one marker per series is shown at the same time.
Is it possible to show only one marker per series and per vertical line annotation? We want to add serveral vertical slices, and each one has a marker to only one series.
Please find attached two pictures: the first one represents what we have, and the second one represents what we need.
Thank you in advance
Regards,
Juan
- You must login to post comments
Short answer: No
The VerticalSliceModifier displays markers for all series that each intersects. You can disable an entire series by setting the attached property:
<s:FastLineRenderableSeries s:VerticalSliceModifier.IncludeSeries="False"/>
However, this will disable that series for all vertical slices.
What you can do as a workaround is to set VerticalSliceModifier.IncludeSeries=”True” only on one series when you select a VerticalLineAnnotation. That’s about the only workaround I can think of I’m afraid
- Andrew Burnett-Thompson answered 9 years ago
- You must login to post comments
Thank you for the quick response
Maybe I should re-implement this using DataPointMarkers instead of vertical slices.
Best regards,
Juan
- Jose Mora Almerich answered 9 years ago
- You must login to post comments
Please login first to submit.