Highcharts Demo
author(s): Torstein Hønsi
by Black Label
HTML
<script src="https://github.highcharts.com/3925481/highstock.js"></script>
<script src="https://github.highcharts.com/3925481/modules/data.js"></script>
<script src="https://github.highcharts.com/3925481/modules/exporting.js"></script>
<div id="container" style="height: 400px; min-width: 310px"></div>
JavaScript
Highcharts.getJSON('https://cdn.jsdelivr.net/gh/highcharts/[email protected]/samples/data/usdeur.json', function(data) {
Highcharts.stockChart('container', {
chart: {
panning: {
enabled: true,
type: 'xy'
},
panKey: 'alt',
zoomType: 'xy'
},
series: [{
name: 'USD to EUR',
data: data
}]
});
});