Silverlight 工具包。 StackedColumnSeries 在列上添加标签
如何为列添加带有总和的标签。我需要使用 silverlight 工具包中的图表堆叠系列来做到这一点
How to add labels with sum for column. I need to do that with chart stacked series from silverlight toolkit
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
已创建自定义 StackedColumnSeriesEx!
在这里您应该找到定义我们正在使用新的自定义数据点类型,并且我们可以找到数据点值的总和。此外,我们还应该定义哪个数据点位于 StackedColumnSeries 中最靠前的位置:
新的 CustomDataPoint 几乎没有新的依赖属性
IsTopPoint - 布尔值,指示当前点是否是最上面的点!
DependentValueSum - 要显示的双精度值。依赖属性
CustomDataPoint 的新样式,用于在其最高值的情况下绘制文本 DependentValueSum:
`
Was created custom StackedColumnSeriesEx!
Here you should find define that we are using new custom data points type and we can find sum of datapoints values. Also we should define which datapoint is located TOP most in StackedColumnSeries:
New CustomDataPoint with few new dependency properies
IsTopPoint - bool value indicating whether current point is top most point!
DependentValueSum - double value to display. Dependency property
New style of CustomDataPoint to draw text DependentValueSum in case if its most top value:
`