app.title = '堆叠柱状图'; option = { tooltip : { trigger: 'axis', axisPointer : { // 坐标轴指示器,坐标轴触发有效 type : 'shadow' // 默认为直线,可选为:'line' | 'shadow' } }, grid: { left: '3%', right: '4%', bottom: '3%', containLabel: true }, xAxis : [ { type : 'category', data : ['周一','周二'] } ], yAxis : [ { type : 'value', scale: true } ], series : [ { name:'联盟广告', type:'bar', stack: '广告', data:[220, 182] }, { name:'视频广告', type:'bar', stack: '广告', data:[150, 232] } ] };