highcharts-禁用标记悬停时的淡入系列

Kab*_*ani 3 highcharts

我的图表区域有多个系列。当我将鼠标悬停在任何一个系列的标记上时,其他背景系列的颜色就会淡化并变得更加透明。我正在尝试禁用该功能,并使所有系列始终处于完全不透明状态。

ppo*_*zek 10

You need to change the opacity property for a inactive state:

plotOptions: {
    series: {
        states: {
            inactive: {
                opacity: 1
            }
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

Live demo: http://jsfiddle.net/BlackLabel/wp46gdf7/

API Reference: https://api.highcharts.com/highcharts/series.column.states.inactive.opacity