score:1

Accepted answer

By default Highcharts will round labels to two decimals. You can change that using yAxis.labels.formatter. See:

        yAxis: {
            max: 33999.253,
            min: 33999.219,
            title: {
                text: 'm',
                style: {
                    color: '#000000',
                    fontWeight: 'bold'
                }
            },
            labels: {
                formatter: function() {
                    return this.value;
                },
                style: {
                    color: '#000000'
                }
            }
        },

And demo: http://jsfiddle.net/NZjUg/4/

score:1

there is a simple solution for this,

use your own formatter for labels

            yAxis: {
                max: 33999.253,
                min: 33999.219,
                title: {
                    text: 'm',
                    style: {
                        color: '#000000',
                        fontWeight: 'bold'
                    }
                },
                labels: {
                    style: {
                        color: '#000000'
                    },
                    formatter: function () {
                        return this.value
                    }
                }
            },

updated your fiddle here: http://jsfiddle.net/NZjUg/5/


Related Query

More Query from same tag