停止HighCharts在悬停一个系列时更改另一个系列的透明度

问题描述 投票:1回答:1

默认情况下,当我将鼠标悬停在一个系列上时,其他系列会变得透明。

我该如何禁用此行为?

hover: { enabled: false}不工作。

highcharts
1个回答
1
投票

您需要将opacity属性更改为非活动状态:

plotOptions: {
    series: {
        states: {
            inactive: {
                opacity: 1
            }
        }
    }
}

现场演示:http://jsfiddle.net/BlackLabel/7fmcp0da/

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

© www.soinside.com 2019 - 2024. All rights reserved.