【发布时间】:2020-06-11 01:43:20
【问题描述】:
我正在为实时图表而苦苦挣扎。我正在使用 WPF。
我想构建一个条形图,按腰带颜色显示空手道俱乐部的成员数量。我的学习项目之一。
按照他们的文档: https://lvcharts.net/App/examples/v1/wpf/Basic%20Column
我在 xaml 中遇到错误:
d:DataContext="{d:DesignInstance local:Charts}" '名称空间 "clr-namespace:KarateClub" 中不存在名称 "Charts" '
和
LabelFormatter="{绑定格式化程序}" '在图表类型中找不到方法格式化程序'
如果我删除了图表显示的 DataContext 代码,但它不使用我的任何值。 我一定想念如何将 XAML 代码链接到 C# 代码......? 我的类/命名空间路径错误吗?
我的 XAML 代码:
<UserControl x:Class="KarateClub.Charts"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:KarateClub"
xmlns:lvc="clr-namespace:LiveCharts.Wpf;assembly=LiveCharts.Wpf"
mc:Ignorable="d"
d:DesignHeight="400" d:DesignWidth="1000" d:DataContext="{d:DesignInstance local:Charts}" >
<Grid Background="White" Width="1000" Height="550">
<Grid Background="White" Margin="33,45,239,170">
<lvc:CartesianChart Series="{Binding SeriesCollection}" LegendLocation="Left">
<lvc:CartesianChart.AxisX>
<lvc:Axis Title="Belts" Labels="{Binding Labels}"></lvc:Axis>
</lvc:CartesianChart.AxisX>
<lvc:CartesianChart.AxisY>
<lvc:Axis Title="Members" LabelFormatter="{Binding Formatter}"></lvc:Axis>
</lvc:CartesianChart.AxisY>
</lvc:CartesianChart>
</Grid>
</Grid>
</UserControl>
我的 C# 代码:
using System;
using System.Windows.Controls;
using LiveCharts;
using LiveCharts.Wpf;
namespace KarateClub
{
public partial class Charts : UserControl
{
public SeriesCollection SeriesCollection { get; set; }
public string[] Labels { get; set; }
public Func<double, string> Formatter { get; set; }
public Charts()
{
InitializeComponent();
SeriesCollection = new SeriesCollection
{
new ColumnSeries
{
Title = "2020",
Values = new ChartValues<double> { 1, 5, 3, 5, 7, 3, 9, 2, 3 }
}
};
Labels = new[] { "White", "Yellow", "Orange", "Green", "Blue", "Purple", "Brown", "Red", "Black" };
Formatter = value => value.ToString("N");
DataContext = this;
}
}
}
【问题讨论】:
标签: c# wpf xaml livecharts