Change Highmaps map color

I want to be able to change the color of this exact whole map. I am using a card bubble. I want a darker color for countries and continents. how can i achieve this since colorAxis will change the data view color (bubble) and not the map color.

http://jsfiddle.net/gh/get/jquery/1.9.1/highslide-software/highcharts.com/tree/master/samples/maps/demo/map-bubble/

obviously it doesn't work :(

colorAxis : {
  color: 'red'  
},

      

+3


source to share


1 answer


You can try replacing the color property with nullColor . What it does is change the color of all shapes to red.

Please check my fiddle : JSFIDDLE



{
    name: 'Countries',
    mapData: mapData,
    //color: '#E0E0E0',
    nullColor: 'red',
    enableMouseTracking: false
}

      

thank

+8


source







All Articles