将 PieChart 与 LiveCharts 和 WPF .NET Core 结合使用

Use PieChart with LiveCharts and WPF .NET Core

我使用 WPF 图表插件: https://lvcharts.net

在 xaml 我有:

<Window x:Class="GoogleDriveManager.WPF.ChartWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:GoogleDriveManager.WPF" xmlns:wpf="clr-namespace:LiveCharts.Wpf;assembly=LiveCharts.Wpf"
        mc:Ignorable="d"
        Title="Chart statistics" Height="450" Width="800">
    <Grid>
        <wpf:PieChart LegendLocation="Bottom" Series="{Binding Items}"/>
  </Grid>
</Window>

和后面的代码:

public ChartWindow()
{
  InitializeComponent();
  DataContext = this;

  Items = new SeriesCollection();

  ContentRendered += (s, ev) =>
  {
    Dictionary<string, List<string>> data = GetData(...);
    foreach (var item in data)
    {
      ISeriesView series = new PieSeries(new { title = item.Key });
      IChartValues values = new ChartValues<string>(item.Value);
      series.Values = values;
      Items.Add(series);
    }
  };
}

public SeriesCollection Items { get; }

但是 window 似乎是空的。

  1. 您应该将 string 值转移到 double
  2. 使用PieSeries属性Title分配标题

我创建了一个简单的案例并且此代码有效:

ContentRendered += (s, ev) =>
{
    Dictionary<string, List<string>> data = new Dictionary<string, List<string>>(){
        {"AAA", new List<string>(){"1","2"}},
        {"BBB", new List<string>(){"3","4"}}
    };
    foreach (var item in data)
    {
        var curValues = item.Value.Select(x => double.Parse(x)).ToList();
        ISeriesView series = new PieSeries{
            Title = item.Key,
            Values = new ChartValues<double>(curValues),
            DataLabels = true
        };
        Items.Add(series);
    }
};