C# 帮助 - Silverlight - 工具包 - Dynamic Line 系列
我需要有关 Silverlight Toolkit Line Series 中折线图的帮助,该折线图动态更新,每 5 秒更新 3 条线,我该怎么做?
I need help with line chart in Silverlight Toolkit Line Series that updates dynamically having 3 lines updating itself every 5 seconds how do i do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
代码的一个很好的例子是:
http://forums.silverlight.net/forums/p/161397/365415.aspx
您使用可观察集合(即依赖属性)设置 3 系列。
然后将 XAML 系列项源绑定到依赖属性。
然后,您需要创建一个计时器,5 秒后将触发一个事件,该事件将更新 DataSeries 依赖属性。
数据会自动绑定Line Series。
谢谢
A good example of Code is :
http://forums.silverlight.net/forums/p/161397/365415.aspx
You set your 3 Series with Observable Collections which are Dependency Propertys.
And you bind your XAML Series Items Source to your Dependency Propertys.
You then will need to create a Timer that after 5 seconds will set off a Event which will go and update the DataSeries Dependency Propertys.
The Data will automatically bind the Line Series.
Thanks