You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
116 lines
2.3 KiB
HTML
116 lines
2.3 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<title>Highcharts Example</title>
|
|
|
|
<script type="text/javascript" src="https://cdn.hcharts.cn/jquery/jquery-1.8.3.min.js"></script>
|
|
<style type="text/css">
|
|
#container {
|
|
height: 300px;
|
|
min-width: 310px;
|
|
max-width: 800px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<script src="https://cdn.hcharts.cn/highcharts/5.0.9/highcharts.js"></script>
|
|
|
|
<div id="container"></div>
|
|
|
|
<button id="large">Large</button>
|
|
<button id="small">Small</button>
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
var chart = Highcharts.chart('container', {
|
|
|
|
chart: {
|
|
type: 'column'
|
|
},
|
|
|
|
title: {
|
|
text: 'Highcharts responsive chart'
|
|
},
|
|
|
|
subtitle: {
|
|
text: 'Resize the frame or click buttons to change appearance'
|
|
},
|
|
|
|
legend: {
|
|
align: 'right',
|
|
verticalAlign: 'middle',
|
|
layout: 'vertical'
|
|
},
|
|
|
|
xAxis: {
|
|
categories: ['Apples', 'Oranges', 'Bananas'],
|
|
labels: {
|
|
x: -10
|
|
}
|
|
},
|
|
|
|
yAxis: {
|
|
allowDecimals: false,
|
|
title: {
|
|
text: 'Amount'
|
|
}
|
|
},
|
|
|
|
series: [{
|
|
name: 'Christmas Eve',
|
|
data: [1, 4, 3]
|
|
}, {
|
|
name: 'Christmas Day before dinner',
|
|
data: [6, 4, 2]
|
|
}, {
|
|
name: 'Christmas Day after dinner',
|
|
data: [8, 4, 3]
|
|
}],
|
|
|
|
responsive: {
|
|
rules: [{
|
|
condition: {
|
|
maxWidth: 500
|
|
},
|
|
chartOptions: {
|
|
legend: {
|
|
align: 'center',
|
|
verticalAlign: 'bottom',
|
|
layout: 'horizontal'
|
|
},
|
|
yAxis: {
|
|
labels: {
|
|
align: 'left',
|
|
x: 0,
|
|
y: -5
|
|
},
|
|
title: {
|
|
text: null
|
|
}
|
|
},
|
|
subtitle: {
|
|
text: null
|
|
},
|
|
credits: {
|
|
enabled: false
|
|
}
|
|
}
|
|
}]
|
|
}
|
|
});
|
|
|
|
$('#small').click(function () {
|
|
chart.setSize(400, 300);
|
|
});
|
|
|
|
$('#large').click(function () {
|
|
chart.setSize(600, 300);
|
|
});
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|