score:2

Accepted answer

Sounds like you just want a logarithmic axis.

    yAxis: {
        type: 'logarithmic',
        min: 0.01,
        max: 10
    },

Here's a fiddle example.

score:0

AFAIK Highcharts does not support automatic creation of histograms, but you can add a category to the xAxis with the desired labels, and then create arrays of data to match these.

xAxis: {
            categories: ['0.01', '0.10', '1.00', '10.00']
        },
series: [{
            data: [10, 52, 1, 0]        
        }]

http://api.highcharts.com/highcharts#xAxis.categories


Related Query

More Query from same tag