我的视图模型上有一个属性,它返回一些硬编码的测试数据:
public ObservableCollection<Item> Items
{
get
{
return new ObservableCollection<Item> {
new Item { Key = 0, Count = 5 },
new Item { Key = 1, Count = 3 },
new Item { Key = 2, Count = 2 },
new Item { Key = 3, Count = 7 }
}
}
}
我的图表在视图中定义为:
<toolkit:WrapPanel>
<toolkit:Chart>
<toolkit:LineSeries ItemsSource="{Binding Items}" IndependentAxis="{Binding Key}" DependentValueBinding="{Binding Count}"/>
</toolkit:Chart>
</toolkit:WrapPanel>
使用该代码,我得到以下异常:
System.Windows.Data Error: BindingExpression path error: 'Key' property not found on 'Test.MyViewModel' 'Test.MyViewModel' (HashCode=50157845). BindingExpression: Path='Key' DataItem='Test.MyViewModel' (HashCode=50157845); target element is 'System.Windows.Controls.DataVisualization.Charting.LineSeries' (Name=''); target property is 'IndependentAxis' (type 'System.Windows.Controls.DataVisualization.Charting.IAxis').
如果我将DataContext
图表的 绑定到Items
,则不会引发异常,但图表不显示任何数据。
编辑:不,它抱怨无法在集合上绑定 Key 和 Count 。
我见过的所有示例的图表都是这样设置的,那么为什么我的尝试绑定到视图模型呢?或者更确切地说,这似乎对其他人有用?