如何删除图表区域下的键标签?

时间:2017-12-06 17:43:39

标签: c# wpf charts wpftoolkit

我正在使用WPFToolkit中的图表控件。

如何删除或隐藏图表区域下的“键”标签?

我在屏幕上用红色标记:

Chart

我有以下XAML代码:

<chartingToolkit:Chart Margin="62.14,92.004,0,130.505"
                       Name="chart"
                       HorizontalAlignment="Left"
                       Width="385" 
                       BorderThickness="0"
                       Padding="0" >
    <chartingToolkit:LineSeries DependentValuePath="Value"
                                IndependentValuePath="Key"
                                ItemsSource="{Binding}"
                                IsSelectionEnabled="True"
                                DataPointStyle="{StaticResource InvisibleDataPoint}"/>
</chartingToolkit:Chart>

1 个答案:

答案 0 :(得分:0)

根据How does one hide the legend尝试使用:

<charting:Chart.LegendStyle>
 <Style TargetType="Control">
 <Setter Property="Width" Value="0"/>
 <Setter Property="Height" Value="0"/>
 </Style>
</charting:Chart.LegendStyle>