gpt4 book ai didi

c# - 样式化 Wpf 饼图

转载 作者:行者123 更新时间:2023-11-30 17:52:19 25 4
gpt4 key购买 nike

这是我的饼图 xaml。

<chartingToolkit:Chart  Name="pieChart" Title="Top Products" Margin="10,10,0,0" Height="262" BorderBrush="#00000000" DataContext="{Binding}" IsHitTestVisible="False" IsTabStop="True" ForceCursor="True">
<chartingToolkit:PieSeries DependentValuePath="Value" IndependentValuePath="Key" ItemsSource="{Binding}" IsSelectionEnabled="True" />

<!-- Plot area-->
<chartingToolkit:Chart.PlotAreaStyle>
<Style TargetType="Grid">
<Setter Property="Background" Value="White" />
</Style>
</chartingToolkit:Chart.PlotAreaStyle>
</chartingToolkit:Chart>

下面是填充数据的代码

public void GenerateChart()
{
List<KeyValuePair<string, double>> valueList = new List<KeyValuePair<string, double>>();
valueList.Add(new KeyValuePair<string, double>("Apple", 101));
valueList.Add(new KeyValuePair<string, double>("Banana", 201));
valueList.Add(new KeyValuePair<string, double>("Cake", 20));
valueList.Add(new KeyValuePair<string, double>("Others", 200));

pieChart.Title = "Top Products";
pieChart.DataContext = valueList;
}

输出结果如下

Chart

现在如何更改图表各个部分的背景颜色。类似于下图。

enter image description here

最佳答案

我认为您应该能够使用 Color Palette .看看 How to set a default colour to the Pie slices in WPF Pie chart在 StackOverflow 上发帖。

另外,看看 Chart Appearance MSDN 上的文章。

关于c# - 样式化 Wpf 饼图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18464752/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com