Highcharts Demo

author(s): Torstein Hønsi

by Muhammad Mushtaq Sheikh

HTML

<script src="https://code.highcharts.com/highcharts.js"></script>

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

CSS

#container {
    height: 400px;
    min-width: 320px;
    max-width: 800px;
    margin: 0 auto;
}

JavaScript

Highcharts.chart('container', {

    title: {
        text: 'Custom number format for Y axis labels'
    },

    subtitle: {
        text: 'Add a unit and force two decimals'
    },

    yAxis: {
        labels: {
            format: '${value:.0f}'
        }
    },

    series: [{
        data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4,
            194.1, 95.6, 54.4],
        type: 'column'
    }]

});