Subversion-Projekte lars-tiefland.ci

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
875 lars 1
<!DOCTYPE HTML>
2
<html>
3
	<head>
4
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5
		<title>Highstock Example</title>
6
 
7
		<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
8
		<style type="text/css">
9
${demo.css}
10
		</style>
11
		<script type="text/javascript">
12
$(function () {
13
 
14
    $.getJSON('http://www.highcharts.com/samples/data/jsonp.php?filename=aapl-c.json&callback=?', function (data) {
15
        // Create the chart
16
        $('#container').highcharts('StockChart', {
17
 
18
 
19
            rangeSelector : {
20
                selected : 1
21
            },
22
 
23
            title : {
24
                text : 'AAPL Stock Price'
25
            },
26
 
27
            series : [{
28
                name : 'AAPL',
29
                data : data,
30
                tooltip: {
31
                    valueDecimals: 2
32
                }
33
            }]
34
        });
35
    });
36
 
37
});
38
 
39
		</script>
40
	</head>
41
	<body>
42
<script src="../../js/highstock.js"></script>
43
<script src="../../js/modules/exporting.js"></script>
44
 
45
<div id="container" style="height: 400px; min-width: 310px"></div>
46
	</body>
47
</html>