问题
Is it possible to easily remove the data point markers from a line series or area series chart. I am using the Silverlight Toolkit charts.
回答1:
Found it:
<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>
来源:https://stackoverflow.com/questions/937755/removing-markers-from-silverlight-line-or-area-series