使用echarts插件作圖表常見的幾個問題(四)—— 柱狀圖中以虛線展現重合的柱子

場景:柱狀圖實現重合而且以虛線展現spa

措施:代碼以下code

barGap表示不一樣系列的柱間距離,默認爲30%表示柱子寬度的 30%orm

option = {
    xAxis: {
        data: ['a', 'b', 'c', 'd'],
        axisTick: {show: false}
    },
    yAxis: {
        splitLine: {show: false}
    },
    animationDurationUpdate: 1200,
    series: [{
        type: 'bar',
           itemStyle: { normal: { color: 'transparent',
                    barBorderColor: 'tomato',
                    barBorderWidth:2,
                    barBorderRadius:0,
                    borderType:"dotted" } },
        silent: true,
        barWidth: 40,
        barGap: '-100%', // 柱子重疊
        data: [60, 60, 60, 60]
    }, {
        type: 'bar',
        barWidth: 40,
        z: 10,
        data: [45, 60, 13, 25]
    }]
};
相關文章
相關標籤/搜索