1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
| const option = { title: { text: '主标题', subtext: '副标题', left: 'center' }, tooltip: { trigger: 'axis' }, legend: { data: ['销量'], top: 'top' }, toolbox: { feature: { saveAsImage: {}, restore: {}, dataView: {}, magicType: { type: ['line', 'bar'] } } }, grid: { left: '3%', right: '4%', bottom: '3%', containLabel: true }, xAxis: { type: 'category', boundaryGap: true, data: ['周一', '周二', '周三', '周四', '周五'] }, yAxis: { type: 'value' }, series: [ { name: '销量', type: 'bar', data: [120, 200, 150, 80, 70], itemStyle: { color: '#3398DB' }, label: { show: true, position: 'top' } } ] };
|