Highcharts Stock Demo

author(s): Sebastian Bochan

by HemalathaThanigaivel

HTML

<div id="container" style="height: 400px; min-width: 600px"></div>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="https://code.highcharts.com/stock/highstock.js"></script>
<script src="https://code.highcharts.com/stock/modules/exporting.js"></script>

JavaScript

$.getJSON('https://www.highcharts.com/samples/data/aapl-c.json', function (data) {
    // Create the chart
    Highcharts.stockChart('container', {

        title: {
            /* text: 'AAPL Stock Price' */
        },

        subtitle: {
            /* text: 'Demo of placing the range selector above the navigator' */
        },

        rangeSelector: {
            /* floating: false,
            y: -70,
            verticalAlign: 'top' */
        },

        navigator: {
            margin: 60
        },

        series: [{
            name: 'AAPL',
            data: data,
            tooltip: {
                valueDecimals: 2
            }
        }]
    });
});