Highcharts Demo

author(s): Torstein Hønsi

by evild70

HTML

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

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

CSS

#container {
    height: 400px;
    margin-top: 1em;
}

JavaScript

Highcharts.SVGRenderer.prototype.symbols.download = function (x, y, w, h) {
    var path = [
    "M3 9.5c-.8 0-1.5-.7-1.5-1.5S2.2 6.5 3 6.5s1.5.7 1.5 1.5S3.8 9.5 3 9.5zm5 0c-.8 0-1.5-.7-1.5-1.5S7.2 6.5 8 6.5s1.5.7 1.5 1.5S8.8 9.5 8 9.5zm5 0c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5z"
    ];
    return path;
};


Highcharts.chart('container', {

    title: {
        text: 'Custom context menu symbol'
    },

    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]
    }],

    exporting: {
        buttons: {
            contextButton: {
                symbol: 'download'
            }
        }
    }

});