Hello,
When displaying scatter plots, I like to use the following three properties on my ScatterSeries:
ClipToBounds=False, ClipToPlotArea=False, and ZIndex=1000
to ensure the points don't get clipped by the axes and boundary scrollbars. See attached pic for the result, when using a single series.
I'm not quite sure how to set the ZIndex of the scatter series when using a ChartSeriesProvider though for dynamic series. It lets me set the ClipToBounds and ClipToPlotArea properties, but not the ZIndex using attached properties.
Any suggestion on how to set the ZIndex of the dynamic scatter series? It doesn't matter to me if they're all the same value, they just need to be higher than the chart boundary scrollbars.
When displaying scatter plots, I like to use the following three properties on my ScatterSeries:
ClipToBounds=False, ClipToPlotArea=False, and ZIndex=1000
to ensure the points don't get clipped by the axes and boundary scrollbars. See attached pic for the result, when using a single series.
I'm not quite sure how to set the ZIndex of the scatter series when using a ChartSeriesProvider though for dynamic series. It lets me set the ClipToBounds and ClipToPlotArea properties, but not the ZIndex using attached properties.
<telerik:ChartSeriesProvider Source="{Binding MultiSeriesData}"> <telerik:ChartSeriesProvider.SeriesDescriptors> <telerik:ScatterSeriesDescriptor ItemsSourcePath="Data" XValuePath="X" YValuePath="Y"> <telerik:ScatterSeriesDescriptor.Style> <Style TargetType="telerik:ScatterPointSeries" BasedOn="{StaticResource ScatterPointSeriesStyle}"> <Setter Property="ClipToBounds" Value="False" /> <Setter Property="ClipToPlotArea" Value="False" /> <!-- I'd like to be able to do the following, but it causes an error --> <!-- <Setter Property="ZIndex" Value="1000" /> --> </Style> </telerik:ScatterSeriesDescriptor.Style> </telerik:ScatterSeriesDescriptor> </telerik:ChartSeriesProvider.SeriesDescriptors></telerik:ChartSeriesProvider>Any suggestion on how to set the ZIndex of the dynamic scatter series? It doesn't matter to me if they're all the same value, they just need to be higher than the chart boundary scrollbars.