SilverLigth的Chart不要图例(Legend)的方法
生活随笔
收集整理的這篇文章主要介紹了
SilverLigth的Chart不要图例(Legend)的方法
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
XMAL方式:
1 <chartingToolkit:Chart x:Name="SamplePercentageChart" Grid.Row="0"2 DataContext="{Binding ElementName=PieSampleUserControl}" >
3
4 <chartingToolkit:PieSeries DependentValueBinding="{Binding Percentage}"
5 ItemsSource="{Binding PieSlices}"
6 IndependentValueBinding="{Binding }"
7 >
8
9 </chartingToolkit:PieSeries>
10
11 <chartingToolkit:Chart.LegendStyle>
12 <Style TargetType="datavis:Legend">
13 <Setter Property="Width" Value="0"/>
14 <Setter Property="Height" Value="0"/>
15 </Style>
16 </chartingToolkit:Chart.LegendStyle>
17
18 </chartingToolkit:Chart>
C#代碼:
1 Chart chart = new Chart { Title = new TextBlock() { Text = di.Key, TextWrapping = TextWrapping.Wrap }, Width = 350, Height = 300, Margin = new Thickness(20, 20, 0, 0) };2 Style style = new Style(typeof(Legend));
3 style.Setters.Add(new Setter(Legend.WidthProperty, 0));
4 style.Setters.Add(new Setter(Legend.HeightProperty, 0));
5 chart.LegendStyle = style;
定制X軸和Y軸量程和標題等方法
XAML方式:
<DVC:ScatterSeries Title=""IndependentValueBinding="{Binding Path=Key}"
DependentValueBinding="{Binding Path=Value}"
>
<DVC:ScatterSeries.IndependentAxis >
<DVC:LinearAxis
Title="Prices"
Orientation="X" Maximum="6.5" Minimum="2">
</DVC:LinearAxis>
</DVC:ScatterSeries.IndependentAxis>
C#代碼:
CategoryAxis xAxis = new CategoryAxis { Orientation = AxisOrientation.X, Title = "(年)" };chart.Axes.Add(xAxis);
LinearAxis yAxis = new LinearAxis { Orientation = AxisOrientation.Y, Location = AxisLocation.Left, Title = "(%)", ShowGridLines = true, Minimum = 0, Maximum = 100 };
chart.Axes.Add(yAxis);
LineSeries ls = new LineSeries();
ls.Title = string.Empty;
ls.IndependentValueBinding = new Binding("Name");
ls.DependentValueBinding = new Binding("Value");
ls.ItemsSource = di.Items;
ls.IndependentAxis = xAxis;
ls.DependentRangeAxis = yAxis;
轉載于:https://www.cnblogs.com/chriskwok/archive/2011/09/29/2195624.html
總結
以上是生活随笔為你收集整理的SilverLigth的Chart不要图例(Legend)的方法的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 2011年9月最新整理的10个有趣的jQ
- 下一篇: 转贴:BMP格式详解 二 (转载)