Highchart饼图的不透明度在悬停时发生变化

时间:2019-04-02 09:46:17

标签: javascript php jquery highcharts

我有一个饼图,其功能现在可以正常使用。问题在于它的显示。当我将鼠标悬停在饼图的一个部分上时,饼图的其他部分的不透明度变低。如下所示 enter image description here

我的脚本在这里:

<script type="text/javascript">

var data = <?php echo json_encode($json_data) ?>

data.forEach(function(el) {
el.name = el.label;
el.y = Number(el.value);
});

Highcharts.chart('userpie', {
chart: {
    plotBackgroundColor: null,
    plotBorderWidth: null,
    plotShadow: false,
    type: 'pie'
},
title: {
    text: undefined
},
credits: {
  enabled: false
},
exporting: { enabled: false } ,
tooltip: {
    pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
},
plotOptions: {
    pie: {
        allowPointSelect: true,
        cursor: 'pointer',
         showInLegend: true,
        dataLabels: {
            enabled: true,
            format: '<b>{point.name}</b>: {point.percentage:.1f} %',
            style: {
                color: (Highcharts.theme && 
Highcharts.theme.contrastTextColor) || 'black'
            }
        }

    }
},
series: [{
    name: 'Users',
    colorByPoint: true,
    data: data
}]
});
</script>

我想念东西吗?。请帮忙。在此先感谢

1 个答案:

答案 0 :(得分:3)

您可以在opacity状态下更改inactive属性:

plotOptions: {
    pie: {
        states: {
            inactive: {
                opacity: 1
            }
        },
        ...
    }
}

实时演示:http://jsfiddle.net/BlackLabel/05qwthgz/

API参考:https://api.highcharts.com/highcharts/series.pie.states.inactive.opacity