C# 图表 - 合理的大数据集和实时
我正在寻找一个 C# WinForms 图表组件,无论是商业的还是开源的,它可以处理相对较大的数据集,并且在图表渲染和更新方面具有合理的可扩展性。 要显示的数据集数量约为 30 个。每个数据集每秒更新 15 到 20 次。 为此需要折线图组件。
I'm looking for a C# WinForms charting component, either commercial or open source, that can handle relatively large data sets and be reasonable scalable with regards to chart rendering and updates. The number of data sets to be displayed would be around 30. There would be between 15 and 20 updates per second for each data set. A line chart component would be required for this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我过去曾使用 ZedGraph 来获取具有大量历史记录的实时股票图表。
如果图表非常复杂,它可能会有点慢,但发现它非常好并且易于扩展(作为开源)以执行您需要的任何自定义格式。
I have used ZedGraph in the past for realtime stock charts with large histories.
It can be a little slow if the chart is very complex but found it to be very good and easy to expand (as open source) to do whatever custom formatting you need.
您是否尝试过 Microsoft Chart控制?
Have you tried the Microsoft Chart Controls ?
提供了多种图表控件,
也许其中之一可以满足您的要求。
There are several chart controls from
Maybe one of these will fulfill your requirements.