Removing markers from a series or ruler of a silverlight series

Is it easy to remove data point markers from a ruler or series chart. I am using the charts of the Silverlight Toolkit.

+1
source share
1 answer

Found:

<chartingToolkit:AreaSeries ItemsSource="{Binding Path=ChartData}" DependentValuePath="used" IndependentValuePath="date" IsSelectionEnabled="True">
<chartingToolkit:AreaSeries.DataPointStyle>
    <Style TargetType="Control">
        <Setter Property="Visibility" Value="Collapsed" />
    </Style>
</chartingToolkit:AreaSeries.DataPointStyle>

+5
source

Source: https://habr.com/ru/post/1779997/


All Articles