echart双轴重叠柱状图
配置项如下:
option = {
tooltip: {
trigger: 'axis',
axisPointer: {
type: 'shadow'
}
},
legend: {},
grid: {
left: '3%',
right: '4%',
bottom: '3%',
containLabel: true
},
xAxis: {
type: 'category',
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
},
yAxis: [
//双y轴
{
type: 'value',
},
{
type: 'value',
}
]
,
series: [
{
name: '直接访问',
type: 'bar',
barGap:'-100%',//重叠效果(可放在任意一个组中)
data: [320, 332, 301, 334, 390, 330, 320]
},
{
name: '视频广告',
type: 'bar',
yAxisIndex: 1,
data: [150, 232, 201, 154, 190, 330, 410]
}
]
};
效果如下: