echarts柱状图多组数据配置
Posted linfblog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了echarts柱状图多组数据配置相关的知识,希望对你有一定的参考价值。
一共三组数据
var map4_data1=[320, 332, 301, 334, 390,360,320, 332, 301, 334, 390,360]; var map4_data2=[220, 182, 191, 234, 290,320,220, 182, 191, 234, 290,320]; var map4_data3=[150, 232, 201, 154, 190,150,150, 232, 201, 154, 190,150];
option配置:
option = { color: [‘#ffdf25‘, ‘#36a9ce‘, ‘#d0e17d‘], tooltip: { trigger: ‘axis‘, axisPointer: { type: ‘shadow‘ } }, grid: { left: ‘0%‘, right: ‘0%‘, bottom: ‘10%‘, top:‘10%‘, containLabel: true }, calculable: true, xAxis: [ { type: ‘category‘, axisTick: {show: false}, data: [‘1月‘, ‘2月‘, ‘3月‘, ‘4月‘, ‘5月‘,‘6月‘,‘7月‘,‘8月‘,‘9月‘,‘10月‘,‘11月‘,‘12月‘] } ], yAxis: [ { type: ‘value‘ } ], series: [ { name: ‘全国平均业绩‘, type: ‘bar‘, barGap: 0, data: map4_data1 }, { name: ‘地区平均业绩‘, type: ‘bar‘, data: map4_data2 }, { name: ‘业务员业绩‘, type: ‘bar‘, data: map4_data3 }, ] };
结果:
以上是关于echarts柱状图多组数据配置的主要内容,如果未能解决你的问题,请参考以下文章