美文网首页
echarts 怎么让饼图的label只显示指定数据

echarts 怎么让饼图的label只显示指定数据

作者: 欧小肥OuO | 来源:发表于2020-05-12 09:57 被阅读0次

{

            name:'访问来源',

            type:'pie',

            selectedMode: 'single',

            radius: [0, '30%'],

            label: {

                normal: {

                    position: 'inner',

                    show:false,

                }

            },

            labelLine: {

                normal: {

                    show: false

                }

            },

            data:[

                {value:335, name:'直达', selected:true,label: {show: true, fontSize: '8',  fontWeight: 'bold'}},

                {value:679, name:'营销广告'},

                {value:1548, name:'搜索引擎'}

            ]

        }

相关文章

网友评论

      本文标题:echarts 怎么让饼图的label只显示指定数据

      本文链接:https://www.haomeiwen.com/subject/ddvfwhtx.html