我正在使用WPFToolkit中的图表控件。
如何删除或隐藏图表区域下的“键”标签?
我在屏幕上用红色标记:
我有以下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>
答案 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>