问题描述
我想画一个实时图上的WindowsForm。我的平台是.NET Framework 3.5。什么库应提供:
I would like to draw a realtime chart on a WindowsForm. My platform is the .Net Framework 3.5. What the library should offer:
- 免费的啤酒
- 的结果应该是pretty的......(我为pretty的标准是相当低的,虽然)
- 图的热图型将是一个很大的优点
- 在可能大量的数据 - 我们正在谈论每秒几百个新的数据点
下面是那些我已经发现迄今:
Here are the ones I have found so far:
- NPLOT
- Microsoft图表控件
- ZedGraph
你有什么上面列出的库的经验?是否有任何其他的免费图书馆,你会建议?
What are your experiences with the libraries listed above? Are there any other free libraries that you would recommend?
推荐答案
我以前使用Microsoft图表控件。这不是坏的,易于实施,而且有很多很好的例子太多,每一个适合初学者。 HTTP://$c$c.msdn.microsoft.com/mschart
I used Microsoft Chart Controls before. It is not bad at all, easy to implement, and has a lot of good examples too, every good for beginners. http://code.msdn.microsoft.com/mschart
但是:
第一,它没有被更新的很长一段时间,因为它被释放。
1st, it hasn't been updated for a long while since it was released.
2,既然是微软,可比性的东西你没有多大控制
2nd, Since it is Microsoft, Comparability is something you dont have much control of
最后,我现在一般使用的图表控件,并使用一些JavaScript图表的API,而不是走的方式,对我来说这让我感觉更干,重量轻,和标准的支持。
Last, now I generally walked way from using chart controls, and using some javascript chart APIs instead, to me those makes me feel more dry, light weighted, and standard supported.
谷歌图(很基本的)
这是一个更高级的一种:(jQuery的)http://www.filamentgroup.com/lab/update_to_jquery_visualize_accessible_charts_with_html5_from_designing_with/
And this is a more advanced one: (Jquery)http://www.filamentgroup.com/lab/update_to_jquery_visualize_accessible_charts_with_html5_from_designing_with/
这篇关于我应该使用哪种.NET图表库?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!