我不会在extjs 4中创建这个图表
http://code.google.com/apis/ajax/playground/?type=visualization#annotated_time_line
或以任何方式在extjs4中实施Google图表
答案 0 :(得分:0)
Extjs 4有图表库。你需要创建一个 将返回XML或json的服务。创建商店并将商店添加到图表中。
为了从雅虎(而不是谷歌)获取数据,我在C#中创建了组件 你可以在我的博客中阅读它 http://gregnozik.blogspot.com/2011/09/yahoo-finance-api.html
创建商店后,您可以创建图表
var lineChart = new Ext.chart.LineChart({
store: store,
xField: 'framework',
yField: 'users'
});