Google 图表 API 和 WPF
我现在编写一个 C# 应用程序。对于我的财务数据,我想使用条形图。我在Google上搜索了很多之后,最好的方法似乎是Google Chart API。
我的问题是,当我启动我的应用程序时,我不需要访问互联网。 是否可以在没有互联网访问的情况下使用 Google Chart API?或者 WPF 中条形图的一个好的替代方案是什么?
I write a C#-application at the moment. For my finance data, I want to use a bar chart. After I searched a lot on Google, the best way seems to be Google Chart API.
My problem is, that it should not be necessary that I have internet-access when I start my application.
Is it possible to work with Google Chart API without internet-access? Or what is a good alternative for a bar chart in WPF?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
![扫码二维码加入Web技术交流群](/public/img/jiaqun_03.jpg)
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
至于原生 WPF 图表,你绝对可以看看 DevExpress WPF Chart 控件 - DXCharts
它们支持动画、最终用户交互,并且在我处理财务数据的项目中工作得相当快。
As for native WPF charts you can definitely take a look at DevExpress WPF Chart control - DXCharts
They supports animation, end-user interaction and work pretty fast in my projects that handle financial data.
Google API 仅在线工作,您无法离线使用它们。
关于替代方案,MS Chart 控件应该是免费的,请参阅如何从 WPF 或 SL 使用它:
Microsoft Client Continuum 实际应用:Silverlight 工具包图表,在 WPF 中运行,
用于商业级别和功能丰富的控件,我个人喜欢 DevXpress 的 XtraCharts,还有来自 Telerik 和 Software FX 的其他图表,但 XtraChart 确实易于使用且功能强大。
Google APIs work online only and you cannot consume them while offline.
about alternatives, the MS Chart control should be free, see how to use it from WPF or SL here:
Microsoft Client Continuum in action: The Silverlight toolkit charts, running in WPF
for commercial level and feature rich controls, personally I love the XtraCharts from DevXpress, there are also others from Telerik and Software FX but XtraChart is really easy to use and powerful.