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柱状图多组数据配置的主要内容,如果未能解决你的问题,请参考以下文章

echarts的相关配置--柱状图

echarts_部分图表配置简介_横向柱状图

Echarts 柱状图配置详解

echarts 多系列柱状图

ECharts柱状图常见效果

横向柱状图渐变echarts