2017-12-06 9 views
0

私はWPFToolkitのチャートコントロールを使用しています。チャート領域のキーのラベルを削除するにはどうすればよいですか?

グラフ領域の「キー」のラベルを削除または非表示にするにはどうすればよいですか?

私は、画面に赤でそれをマーク:

Chart

I以下の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

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> 
関連する問題