标签:
隐藏Chart的Legend
<chartingToolkit:Chart.LegendStyle> <Style TargetType="Control"> <Setter Property="Width" Value="0" /> <Setter Property="Height" Value="0" /> </Style> </chartingToolkit:Chart.LegendStyle>
隐藏具体Item的legend
<charting:LineSeries.LegendItemStyle > <Style TargetType="{x:Type charting:LegendItem}"> <Setter Property="Visibility" Value="Collapsed"/> </Style> </charting:LineSeries.LegendItemStyle>
<Grid Height="800"> <chartingToolkit:Chart Name="lineChart" Title="Pressure over Time" VerticalAlignment="Top" Margin="20,50,20,0" Height="500"> <chartingToolkit:Chart.Axes> <chartingToolkit:LinearAxis Title="Pressure" Orientation="Y" Interval="100" /> <chartingToolkit:LinearAxis Title="Time" Orientation="X" Interval="100" /> </chartingToolkit:Chart.Axes> <chartingToolkit:LineSeries DependentValuePath="Value" IndependentValuePath="Key" ItemsSource="{Binding}" Name="Test" IsSelectionEnabled="True" ClipToBounds="False"> </chartingToolkit:LineSeries> </chartingToolkit:Chart> <Button Width="100" Height="24" Margin="20,556,1058,220" Content="More" Name="Button1" /> </Grid>
标签:
原文地址:http://www.cnblogs.com/HQFZ/p/4446727.html