Removing markers from silverlight line or area series

岁酱吖の 提交于 2019-12-24 06:47:06

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!