代码编辑器:
x
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
<script src="https://cdn.hcharts.cn/highcharts/highcharts-more.js"></script>
6
<div id="container" style="width: 500px; height: 400px; margin: 0 auto"></div>
7
<script>
8
var chart = {
9
type: 'gauge',
10
plotBackgroundColor: null,
11
plotBackgroundImage: null,
12
plotBorderWidth: 0,
13
plotShadow: false
14
};
15
var title = {
16
text: '车速表'
17
};
18