score:0

Accepted answer

try to set yaxis type to logarithmic, and its minortickinterval to 0.1. logarithmic scale fits to this type of data perfectly. lets look at code below:

yaxis: {
    type: 'logarithmic',
    minortickinterval: 0.1,
    title: {
        text: 'population (millions)'
    }
},

here is your refactored jsfiddle: https://jsfiddle.net/daniel_s/x5oxyt2v/

best regards!

score:1

setting the align attribute to "left" could work.

datalabels: {
    align: "left"
}

see here: https://jsfiddle.net/t15eg1qm/3/


Related Query

More Query from same tag