Highcharts Demo

author(s): Torstein Hønsi

by Mike Zavarello

HTML

<script src="https://code.highcharts.com/highcharts.js"></script>
<button>Update max data point</button>
<div id="container" style="max-width: 800px"></div>

JavaScript

$(function () {
    var chart = Highcharts.chart('container', {

        title: {
            text: 'Y axis softMax is 100'
        },

        subtitle: {
            text: 'Click the button to change data max'
        },

        xAxis: {
            categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
        },

        yAxis: {
            softMax: 100,
            title: {
                text: 'Percentage'
            }
        },

        series: [{
            data: [0, 1, 0, 2, 3, 5, 8, 5, 15, 14, 25, 54]
        }]
    });


    $('.button').toggle(function () {
        chart.series[0].points[11].update(120);
    }, function () {
        chart.series[0].points[11].update(54);
    });
});