I am using Highcharts to create a bubble chart and want the color of each bubble to be different. I am setting the color like this:
series: [{
data: [
{ x: 95, y: 95, z: 13.8, name: 'BE', country: 'Belgium', color: Highcharts.getOptions().colors[0]},
{ x: 86.5, y: 102.9, z: 14.7, name: 'DE', country: 'Germany', color: Highcharts.getOptions().colors[1] }]
}]
But when I hover on each node the color of the bubble changes to the default blue. Is there a way to set the hover color, or disable the hover color change altogether?