Highcharts Stock Demo
author(s): Torstein Hønsi
by Nhi Nguyen
HTML
<div id="container" style="height: 400px; min-width: 600px"></div>
<script src="https://code.highcharts.com/stock/7.1.2/highstock.js"></script>
<script src="https://code.highcharts.com/stock/7.1.2/modules/exporting.js"></script>
<script type="text/javascript" src="https://www.highcharts.com/samples/data/usdeur.js"></script>
JavaScript
Highcharts.stockChart('container', {
scrollbar: {
enabled:true,
height: 30
},
rangeSelector: {
selected: 1,
enabled:false
},
xAxis:{
offset:100,
title: {
text: 'Time',
marginBottom:30,
},
},
series: [{
name: 'USD to EUR',
data: usdeur
}]
});