Ext.ns('DrawChart');
/**
* 绘制图表
*
* @class DrawChart.js
* @extends Ext.Panel
* @example
* @author KangJunYun
*/
DrawChart= Ext.extend(Ext.Panel,{
constructor:function(config){
Ext.applyIf(this, config);
this.initUI();
DrawChart.superclass.constructor.call(this,
{
id : 'DrawChart',
title : '图表',
iconCls : 'menu-appuser',
layout : 'border',
items : [this.chart],
autoScroll : true
}
);
},
initUI:function(){
var store = new Ext.data.JsonStore({
fields: ['season', 'total'],
data: [{
season: 'Summer',
total: 150
},{
season: 'Fall',
total: 245
},{
season: 'Winter',
total: 117
},{
season: 'Spring',
total: 184
}]
});
}
}
);
点击之后浏览器爆的错误是:
为嘛不用 echarts 多好用的图表空间呀
echarts 可以跟extjs 整合? 难度大吗?有没有 实例,谢谢了OHL
@漫天de光: echarts 是百度的开源组件。非常简单。你直接百度就知道了。。。