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 51 52
| const option = { title: { text: 'ECharts 销量统计', subtext: '示例数据', left: 'center', }, tooltip: { trigger: 'axis', // 触发类型为坐标轴触发 }, xAxis: { type: 'category', // 类目轴 data: ['衬衫', '羊毛衫', '雪纺衫', '裤子', '高跟鞋', '袜子'], // x轴数据 axisLabel: { color: '#333', // 标签颜色 fontSize: 14, // 标签字体大小 }, axisLine: { lineStyle: { color: '#ccc', // 轴线颜色 }, }, axisTick: { show: false, // 是否显示刻度线 }, }, yAxis: { type: 'value', // 数值轴 axisLabel: { color: '#333', // 标签颜色 formatter: '{value} 件', // 标签格式化 }, axisLine: { show: false, // 是否显示轴线 }, splitLine: { lineStyle: { type: 'dashed', // 分割线样式 color: '#eee', // 分割线颜色 }, }, }, series: [ { name: '销量', type: 'bar', // 柱状图 data: [5, 20, 36, 10, 10, 20], // 数据 itemStyle: { color: (params) => ['#5470c6', '#91cc75', '#fac858', '#ee6666', '#73c0de', '#3ba272'][params.dataIndex] || '#fac858', }, }, ], };
|