Highcharts Stock Demo
author(s): Torstein Hønsi
by Fusher
HTML
<div id="container" style="height: 400px; min-width: 600px"></div>
<script src="http://code.highcharts.com/stock/highstock.js"></script>
<script src="http://code.highcharts.com/stock/modules/exporting.js"></script>
<script type="text/javascript" src="http://www.highcharts.com/samples/data/usdeur.js"></script>
JavaScript
$(function() {
$('#container').highcharts('StockChart', {
chart: {
},
rangeSelector: {
selected: 1
},
series: [{
name: 'USD to EUR',
id: 'dataseries',
data: usdeur
}, {
type: 'flags',
y: 0,
data: [{
x: Date.UTC(2011, 1, 14),
title: ' ',
text: 'Shape: "squarepin"'
}, {
x: Date.UTC(2011, 3, 28),
title: ' ',
text: 'Shape: "squarepin"'
}],
onSeries: 'dataseries',
shape: 'url(http://www.highcharts.com/demo/gfx/snow.png)',
width: 16
}, {
type: 'flags',
data: [{
x: Date.UTC(2011, 2, 1),
text: 'Shape: "circlepin"'
}, {
x: Date.UTC(2011, 3, 1),
text: 'Shape: "circlepin"'
}],
shape: 'circlepin',
title: 'B',
width: 16
}, {
type: 'flags',
data: [{
x: Date.UTC(2011, 2, 10),
title: 'C',
text: 'Shape: "flag"'
}, {
x: Date.UTC(2011, 3, 11),
title: 'C',
text: 'Shape: "flag"'
}],
color: '#5F86B3',
fillColor: '#5F86B3',
onSeries: 'dataseries',
width: 16,
style: { // text style
color: 'white'
},
states: {
hover: {
fillColor: '#395C84' // darker
}
}
}]
});
});