Highcharts Demo

author(s): Torstein Hønsi

by dirtyd77

HTML

<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>

<div id="container" style="height: 300px"></div>

Toggle: 
<button id="toggle-type" class="autocompare">Type</button>
<button id="toggle-opposite" class="autocompare">Opposite</button>
<button id="toggle-linewidth" class="autocompare">Line width</button>
<button id="toggle-linecolor" class="autocompare">Line color</button>

JavaScript

$(function () {
    $('#container').highcharts({
    
        title: {
            text: 'Axis.update() demo'
        },
    
        xAxis: {
            categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
        },
    
        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]
        }]
    
    });
    

    var chart = $('#container').highcharts(),
        type = 1,
        types = ['linear', 'datetime', 'logarithmic'];
    $('#toggle-type').click(function() {
        chart.yAxis[0].update({
            type: types[type]
        });
        type++;
        if (type === types.length) {
            type = 0;
        }
    });

    var opposite = true;
    $('#toggle-opposite').click(function() {
        chart.yAxis[0].update({
            opposite: opposite
        });
        opposite = !opposite;
    });

    var lineWidth = 2;
    $('#toggle-linewidth').click(function() {
        chart.yAxis[0].update({
            lineWidth: lineWidth
        });
        lineWidth = (lineWidth + 2) % 4;
    });

    var lineColor = 'red';
    $('#toggle-linecolor').click(function() {
        chart.yAxis[0].update({
            lineColor: lineColor
        });
        lineColor = { red: 'blue', blue: 'red' }[lineColor];
    });
});