Silverlight 图表 - 饼图显示图表上的依赖值
我想在饼图本身上显示相关值(不在图例区域中)。 我正在使用 Silverlight 4 + Silverlight 4 Toolkit(2010 年 4 月)。
这应该是一个很常见的请求,但我还没有找到解决方案。 我该怎么做?
<toolkit:Chart Name="samplePieChart" Title="Sample" Width="600">
<toolkit:Chart.Series>
<toolkit:PieSeries Name="samplePieSeries"
ItemsSource="{Binding Questions}"
IndependentValueBinding="{Binding Name}"
DependentValueBinding="{Binding Count}"
IsSelectionEnabled="True"
/>
</toolkit:Chart.Series>
</toolkit:Chart>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我记得我有一个 链接,包含与图表相关的资源集合。
在该页面上,您可以找到可以帮助您向饼图添加标签的链接:
LabeledPieChart
此解决方案使用工具包
Chart
类。尽管我说过可以在不创建新类的情况下创建类似的行为,但我认为这并不比使用现有控件更容易。无论如何,我可以发布显示依赖值的饼图系列的自定义样式。
您所需要的只是某种转换器,它将切片的路径几何形状转换为
Canvas
的Left
或Top
属性,并且数据点的自定义样式。转换器:
以及
PieDataPoint
类模板内的几行 xaml:这是
PieDataPoint
样式的完整代码:您可以这样应用此样式:
以及图表将显示为单色橙色图表。
如果您不喜欢它,这里是链接我在其中展示了如何更改图表的
Palette
属性。这是具有 3 种颜色的调色板的示例,您可以通过类推添加其他颜色:
并且不要忘记从系列定义中删除
DataPointStyle
属性:=>
<图表:PieSeries ...
I have recalled that I have a link with the collection of resources related with charts.
And on that page you can find the link which can help you to add labels to the pie chart:
LabeledPieChart
This solution use the derived class from the toolkit
Chart
class. And although I said that it is possible to create a similar behavior without creating new classes, I don't think that it is easier than using the existing control.Anyway I can post the custom style of the pie series which displays the dependent value.
All that you need is some kind of converter which converts the path geometry of the slice to the
Left
or theTop
property of theCanvas
, and the custom style of the data point.Converter:
And a few lines of xaml inside the template of the
PieDataPoint
class:Here is the full code of the
PieDataPoint
style:You can apply this style so:
And the chart will be displayed as one-color orange chart.
If you don't like it, here is the link where I have shown how to change the
Palette
property of the chart.This is the example of the Palette with 3 colors, other colors you can add by analogy:
And don't forget to remove the
DataPointStyle
property from the series definition:<chart:PieSeries DataPointStyle="{StaticResource LabelDataPointStyle}" ...
=>
<chart:PieSeries ...