WPF 工具包饼图填充值
我用数据填充饼图(形式 observablehas -> dict),但每次图表获取新数据时,饼图都会淡出并淡入。我希望饼图切片如下所示更改: http://silverlight.net/content/samples/sl2/toolkitcontrolsamples/ 如果选择“饼图系列”,则运行/default.html
,然后查看“动态数据项”。
I Fill my Pie Chart with Data (form observablehas -> dict) but everytime the chart gets new data, the pie fades out and fades in. I want the pie slices to change like here:
http://silverlight.net/content/samples/sl2/toolkitcontrolsamples/run/default.html
if you choose "Pie Series" and then look at "dynamic data items".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当你获得新数据时,你应该将它们添加到 ObservableCollection 中,而不需要先清除 ObservableCollection。
我假设您要么覆盖 ObservableCollection,要么在添加新数据之前清除它。
When you get new data, you should add them to the ObservableCollection without clearing the ObservableCollection first.
I assume you either overwrite your ObservableCollection or you clear it before adding the new data.