I’m creating a JS project using Highcharts lib (tilemap component). It now looks like this:

colorAxis: { // colors of my categories
dataClasses: [{
from: 1,
to: 1,
color: '#828ee3',
name: 'Субъекты организации и ее представительств'
}, {
from: 2,
to: 2,
color: '#febf10',
name: 'Прибыли в субъект из организации'
}, {
from: 3,
to: 3,
color: '#6fcf97',
name: 'Прибыли в организацию из субъекта'
}]
},
Unlike other map chart, when i click on a legend item, some items disappear from map:

I was able do disable legend click, but is it possible to chage the tile color instead of fully hiding it?
Code source here
