我有一个页面,我想使用WinRT Xaml Toolkit数据可视化控件放置图表。
我有以下代码:
<Charting:Chart x:Name="PieChart" Width="400" Height="400">
<Charting:Chart.Series>
<Charting:PieSeries IndependentValuePath="X" DependentValuePath="Y"/>
</Charting:Chart.Series>
</Charting:Chart>
VS告诉我,PieSeries错了:&#34;类型&#39; PieSeries&#39;无法添加到类型&#39; Collection`1&#39;&#34;的类型的集合或词典中。
为什么这是一个错误?
答案 0 :(得分:0)
它没有经过全面测试,但看起来这就是样品现在所做的,你能做类似的事吗?
<charting:Chart
x:Name="PieChart"
Title="Pie Chart"
Margin="70,0">
<charting:Chart.Series>
<Series:PieSeries
Title="Population"
ItemsSource="{Binding Items}"
IndependentValueBinding="{Binding Name}"
DependentValueBinding="{Binding Value}"
IsSelectionEnabled="True" />
</charting:Chart.Series>
</charting:Chart>