colorAxis labels

by kzoon

HTML

<script src="https://code.highcharts.com/maps/highmaps.js"></script>
<script src="https://code.highcharts.com/maps/modules/exporting.js"></script>
<script src="https://code.highcharts.com/mapdata/custom/european-union.js"></script>

<div id="container"></div>

CSS

#container {
    height: 500px; 
    min-width: 310px; 
    max-width: 800px; 
    margin: 0 auto; 
}
.loading {
    margin-top: 10em;
    text-align: center;
    color: gray;
}

JavaScript

// Prepare demo data
// Data is joined to map using value of 'hc-key' property by default.
// See API docs for 'joinBy' for more info on linking data and map.
var data = [
    ['dk', 200000],
    ['de', 20001],
    ['fr', 200000],
    ['ie', 204654],
    ['es', 5454],
    ['it', 79879],
    ['gb', 4644],  
    ['nl', 97987],
    ['lu', 200000],
    ['be', 242777],
    ['pt', 54544],
 
];

// Create the chart
Highcharts.mapChart('container', {
    chart: {
        map: 'custom/european-union'
    },


    colorAxis: {
        min: 0,
        maxPadding:0,
        minPadding:0,
       // tickAmount: 2,
        labels:{
        format:"{value:.,.0f}",
        overflow:'allow',
        }
    },

    series: [{
    allAreas:false,
        data: data,
       
    }]
});