echart疊加柱狀圖上顯示文字

愛遊戲的程式設計師是少女鴨發表於2020-10-17

echart疊加柱狀圖上顯示文字

效果圖

在這裡插入圖片描述

修改程式碼

在這裡插入圖片描述

原始碼

option = {
    tooltip: {
        trigger: 'axis',
        axisPointer: {            // 座標軸指示器,座標軸觸發有效
            type: 'shadow'        // 預設為直線,可選為:'line' | 'shadow'
        }
    },
    legend: {
        data: [ '郵件營銷', '聯盟廣告', '視訊廣告']
    },
    grid: {
        left: '3%',
        right: '4%',
        bottom: '3%',
        containLabel: true
    },
    xAxis: [
        {
            type: 'category',
            data: ['週一', '週二', '週三', '週四', '週五', '週六', '週日']
        }
    ],
    yAxis: [
        {
            type: 'value'
        }
    ],
    series: [
        {
            name: '郵件營銷',
            type: 'bar',
            stack: '廣告',
            label:{
                normal:{
                    show:true,
                    position:'insideRight',
                    textStyle:{
                        color:'black'
                    },
                    formatter:function(params){
                        return params.value
                    }
                }
            },
            data: [ 132, 101, 134, 90, 230, 310,112]
        },
        {
            name: '聯盟廣告',
            type: 'bar',
            stack: '廣告',
            label:{
                normal:{
                    show:true,
                    position:'insideRight',
                    textStyle:{
                        color:'black'
                    },
                    formatter:function(params){
                        return params.value
                    }
                }
            },
            data: [220, 182, 191, 234, 290, 330, 310]
        },
        {
            name: '視訊廣告',
            type: 'bar',
            stack: '廣告',
            label:{
                normal:{
                    show:true,
                    position:'insideRight',
                    textStyle:{
                        color:'black'
                    },
                    formatter:function(params){
                        return params.value
                    }
                }
            },
            data: [150, 232, 201, 154, 190, 330, 410]
        }
    ]
};



參考:https://www.cnblogs.com/hxjCode/p/11270139.html

相關文章