index.htm
1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Highstock Example</title>
<style type="text/css">
#container {
min-width: 310px;
max-width: 800px;
}
</style>
</head>
<body>
<script src="../../code/highstock.js"></script>
<script src="../../code/modules/data.js"></script>
<div id="container"></div>
<button id="large">Large</button>
<button id="small">Small</button>
<button id="auto">Auto</button>
<script type="text/javascript">
Highcharts.getJSON('https://www.highcharts.com/samples/data/aapl-c.json', function (data) {
// Create the chart
var chart = Highcharts.stockChart('container', {
chart: {
height: 400
},
title: {
text: 'Highstock Responsive Chart'
},
subtitle: {
text: 'Click small/large buttons or change window size to test responsiveness'
},
rangeSelector: {
selected: 1
},
series: [{
name: 'AAPL Stock Price',
data: data,
type: 'area',
threshold: null,
tooltip: {
valueDecimals: 2
}
}],
responsive: {
rules: [{
condition: {
maxWidth: 500
},
chartOptions: {
chart: {
height: 300
},
subtitle: {
text: null
},
navigator: {
enabled: false
}
}
}]
}
});
$('#small').click(function () {
chart.setSize(400);
});
$('#large').click(function () {
chart.setSize(800);
});
$('#auto').click(function () {
chart.setSize(null);
});
});
</script>
</body>
</html>