2条回答 默认 最新
- 以梦为马-不负韶华 2017-09-15 07:40关注
Ext.create('Ext.chart.Chart', { renderTo: Ext.getBody(), width: 500, height: 300, animate: true, store: store, axes: [data ],//绑定数据 series: [data ]//绑定数据 });
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报
Ext.create('Ext.chart.Chart', {
renderTo: Ext.getBody(),
width: 500,
height: 300,
animate: true,
store: store,
axes: [data ],//绑定数据
series: [data ]//绑定数据
});