Echarts | 餅圖引導(dǎo)線周圍文字位置的改變

默認(rèn)樣式:

image.png

需求樣式:
image.png

可以看到,二圖中文字和線的相對(duì)位置是不一樣的。需求的樣式,可通過(guò)設(shè)置label > paddinglabelLine > length / length2來(lái)實(shí)現(xiàn)。關(guān)鍵點(diǎn)在于設(shè)置一個(gè)負(fù)的padding。以下為參考代碼:

app.title = '環(huán)形圖';

option = {
    tooltip: {
        trigger: 'item',
        formatter: "{a} <br/>: {c} (u0z1t8os%)"
    },
    legend: {
        orient: 'vertical',
        show: false,
        x: 'left',
        data: ['視頻廣告', '百度', '谷歌', '必應(yīng)', '其他']
    },
    series: [
 
        {
            name: '訪問(wèn)來(lái)源',
            type: 'pie',
            radius: ['30%', '55%'],
            labelLine: {
                normal: {
                    length: 20,
                    length2: 70,
                    lineStyle: {
                        color: '#333'
                    }
                }
 
            },
            label: {
                normal: {
                    formatter: '{b|}{a|u0z1t8os%}\n\n',
                    borderWidth: 20,
                    borderRadius: 4,
                    padding: [0, -70],
                    rich: {
                        a: {
                            color: '#333',
                            fontSize: 12,
                            lineHeight: 20
                        },
                        b: {
                            fontSize: 12,
                            lineHeight: 20,
                            color: '#333'
                        }
                    }
                }
            },
            data: [{
                value: 135,
                name: '視頻廣告'
            }, {
                value: 1048,
                name: '百度'
            }, {
                value: 251,
                name: '谷歌'
            }, {
                value: 147,
                name: '必應(yīng)'
            }, {
                value: 102,
                name: '其他'
            }]
        }
    ]

};

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書(shū)系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容