使用Silverlight Toolkit绘制图表(下)--饼图,折线图,散点图
2009-02-16 11:57:09 来源:WEB开发网现在我们再看一下其运行效果:
可以看出,我们只要将ColumnSeries换成PieSeries,其它的代码一行不动,就将柱状图显示成了饼图,
是不是很方便,呵呵。
当然在饼图中也支持直接在Xaml中进行属性声明绑定,比如:
<charting:ChartTitle="Xaml绑定"x:Name="FunctionSeriesSample" BorderBrush="Gray"Margin="5">
<charting:Chart.Series>
<charting:PieSeries
ItemsSource="{BindingPugetSound,Source={StaticResourceCity}}"
IndependentValueBinding="{BindingName}"
DependentValueBinding="{BindingPopulation}"
IsSelectionEnabled="True"
SelectionChanged="BarSeries_SelectionChanged"StylePalette="{StaticResourceColorCustomStyle}"
Template="{StaticResourceCustomTemplate}">
</charting:PieSeries>
</charting:Chart.Series>
</charting:Chart>
另外就是饼图支持鼠标选择事件,比如当我们使用鼠标选中饼图中的某一显示区域时,我们可以将该区
域的详细信息显示出来。为了实现这个效果,我们将下面的代码加入了PieSample.Xaml中:
Tags:使用 Silverlight Toolkit
编辑录入:爽爽 [复制链接] [打 印]更多精彩
赞助商链接