Highcharts Stock Demo

author(s): Torstein Hønsi

by takiechisokai

HTML

<div id="container" style="height: 400px; min-width: 600px"></div>

<script src="https://code.highcharts.com/stock/highstock.js"></script>
<script src="https://code.highcharts.com/stock/modules/exporting.js"></script>
<script type="text/javascript" src="https://www.highcharts.com/samples/data/usdeur.js"></script>

JavaScript

Highcharts.stockChart('container', {

    yAxis: {
        plotLines: [{
            value: 0.854,
            width: 1,
            color: 'green',
            dashStyle: 'dash',
            label: {
                text: 'Latest value',
                align: 'right',
                //y: 12,
                x: 0
            }
        }]
    },

    rangeSelector: {
        selected: 1
    },

    series: [{
        name: 'USD to EUR',
        data: usdeur
    }]
});