Используйте PieChart с LiveCharts и WPF.СЕТЕВОЕ ядро

#c# #wpf #livecharts

#c# #wpf #живые диаграммы

Вопрос:

Я использую плагин chart для 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; }
  

Но кажется, что окно пустое.

Ответ №1:

  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);
    }
};