绘制简单线条但有很多动态变化的点的最佳图形库! (WPF)
我想知道一个在 WPF 中绘制图形的库..
我想绘制一个带有很多点的线图,这些点在运行时增加.. 我尝试使用 DynamicDataDisplay,但它在我的应用程序中非常慢...
所以..您能给我推荐一个库/项目来解决我的问题吗?
马阿尼谢谢!
I'd like to know a library to draw graphics in WPF..
I'd like to plot a line graph with a lot of points which increases at runtime..
I tried with DynamicDataDisplay, but it was very slow in my app...
So.. Can you suggest me a library / project to use to solve my problem?
Maaany thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议使用转换器将您的数据绑定到
System.Windows.Shapes.Path
,如果添加或删除点来更新图形,您只需要实现一个通知接口。(最近为这个问题编写了一个通用的笛卡尔点数组转换器 )
I'd suggest binding your data to a
System.Windows.Shapes.Path
using a converter, you just need to implement a notifying interface if points are added or removed to update the graph.(Recently wrote a generic cartesian point array converter for this question)