代码编辑器:
1
2
<meta charset="utf-8" />
3
<title>Highcharts 基础教程 | 简单教程(www.twle.cn)</title>
4
<script src="https://cdn.hcharts.cn/highcharts/highcharts.js"></script>
5
<div id="container" style="width: 500px; height: 400px; margin: 0 auto"></div>
6
<script>
7
var chart = {
8
type: 'areaspline'
9
};
10
var title = {
11
text: 'Average fruit consumption during one week'
12
};
13
var subtitle = {
14
style: {
15
position: 'absolute',
16
right: '0px',
17
bottom: '10px'
18
}