禁用wpftoolkit图表数据点

时间:2011-03-18 17:06:16

标签: c# wpf wpftoolkit charts

有人知道如何在WPFToolkit图表中关闭noraml LineSeries的数据点吗?我发现它们非常烦人,对我的目的没有用,但我找不到一个简单的属性或类似的东西。

1 个答案:

答案 0 :(得分:14)

你想要隐藏它们吗?

可以将空ControlTemplate设置为Template属性。 这是一个例子:

<Window.Resources>
    <Style x:Key="InvisibleDataPoint" TargetType="{x:Type charting:DataPoint}">
        <Setter Property="Background" Value="Blue"/>
        <Setter Property="Template" Value="{x:Null}"/>
    </Style>
</Window.Resources>
<Grid>
    <charting:Chart>
        <charting:LineSeries ItemsSource="{Binding ChartItems}" IndependentValuePath="XValue" DependentValuePath="YValue" 
                                 DataPointStyle="{StaticResource InvisibleDataPoint}"/>
    </charting:Chart>
</Grid>

虽然这些点是不可见的,但您可以设置其他属性,例如Background并更改图表的外观。

enter image description here