日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

SilverLigth的Chart不要图例(Legend)的方法

發布時間:2025/3/21 编程问答 24 豆豆
生活随笔 收集整理的這篇文章主要介紹了 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)的方法的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。