score:28

Accepted answer

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

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

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

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


Related Query

More Query from same tag