option = option = { tooltip: { backgroundColor: 'rgba(13, 64, 71, 0.50)', borderColor: 'rgba(143, 225, 252, 0.60)', padding: 8, textStyle: { color: '#fff', } }, legend: { data: ['靖北币', '晶石', ], itemWidth: 14, itemHeight: 10, itemGap: 4, right: 5, textStyle: { fontSize: 14, color: 'black' } }, xAxis: [ { type: 'category', data: ['用户1', '拥护2', '用户1', '用户1'], axisPointer: { type: 'shadow' }, axisLabel: { textStyle: { color: '#F5F5F5', fontSize: 12 } }, } ], yAxis: [ { nameTextStyle:{ color:"#fff" }, type: 'value', axisLabel: { textStyle: { color: '#F5F5F5', fontSize: 12 } }, splitLine: { show: true, lineStyle: { color: '#979797', type: [5, 10], }, }, }, { type: 'value', nameTextStyle:{ color:"#fff" }, axisLabel: { textStyle: { color: '#F5F5F5', //更改坐标轴文字颜色 fontSize: 12 //更改坐标轴文字大小 }, formatter: '{value} ' }, splitLine: { show: false, }, }, ], series: [ { name: '靖北币', type: 'bar', color:'#77d241', itemStyle: { normal: { label: { show: true, position: 'top', textStyle: { color: 'black', fontSize: 12 } } } }, data: [180, 170, 110, 370, 37, 260, 420, 420] }, { name: '晶石', type: 'bar', yAxisIndex: 1, color:'#4397f1', itemStyle: { normal: { label: { show: true, position: 'top', textStyle: { color: 'black', fontSize: 12 } } } }, data: [490, 380, 200, 480, 480, 310, 370, 250] }, ] };