可以在 Extjs4 图表中制作 google 图表

发布于 2024-12-05 02:40:17 字数 269 浏览 1 评论 0原文

中创建此图表

我不会在 extjs 4 http://code.google .com/apis/ajax/playground/?type=visualization#annotated_time_line

或任何在 extjs4 中实现 Google 图表的方法

i wont to create this chart in extjs 4

http://code.google.com/apis/ajax/playground/?type=visualization#annotated_time_line

or any way to implement Google chart in extjs4

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只是我以为 2024-12-12 02:40:17

Extjs 4 有图表库。你需要创建一个
将返回 XML 或 json 的服务。创建商店并将商店添加到图表中。

为了从 yahoo(还不是从 Google)获取数据,我用 C# 创建了组件
你可以在我的博客中阅读
http://gregnozik.blogspot.com/2011/09/yahoo-finance -api.html

创建商店后,您将创建一个图表

var lineChart = new Ext.chart.LineChart({   
    store: store,   
    xField: 'framework',   
    yField: 'users'  
});  

Extjs 4 have chart library . You need to create a
service that will return XML or json. Create store and add a store to graph.

In order to take data from yahoo (not from Google yet) I created component in C#
You can read it in my blog
http://gregnozik.blogspot.com/2011/09/yahoo-finance-api.html

After you create a store you create a chart

var lineChart = new Ext.chart.LineChart({   
    store: store,   
    xField: 'framework',   
    yField: 'users'  
});  
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文