Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.9k views
in Technique[技术] by (71.8m points)

highcharts 3D饼图 label在饼图上显示问题?

`var chart = Highcharts.chart('container', {

chart: {
    type: 'pie',
    options3d: {
        enabled: true,
        alpha:30,
    }
},
title: {
    text: '简数科技每周水果消耗量'
},
subtitle: {
    text: 'Highcharts 中的3D环形图'
},
plotOptions: {
    pie: {
        innerSize: 120,
        depth: 45,
        dataLabels:{
            distance:-45,
        }
    }
},
series: [{
    name: '货物金额',
    data: [
        ['香蕉', 8],
        ['猕猴桃', 3],
        ['桃子', 1],
        ['橘子', 6],
        ['苹果', 8],
        ['梨', 4],
        ['柑橘', 4],
        ['橙子', 1],
        ['葡萄 (串)', 1]
    ]
}]

});`

image

橙子和葡萄的label显示在柑橘上,因为是3D饼图,alpha设置后,label的位置不对,该如何配置。


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

我也有相同的问题,你的这个问题解决了么?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...