echarts的时钟仪表盘
时间: 2023-11-24 12:52:08 浏览: 77
c#仪表盘、时钟
以下是一个简单的ECharts时钟仪表盘的例子:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ECharts 时钟仪表盘示例</title>
<!-- 引入 ECharts 文件 -->
<script src="https://cdn.jsdelivr.net/npm/echarts@5.1.2/dist/echarts.min.js"></script>
</head>
<body>
<!-- 为 ECharts 准备一个具备大小(宽高)的 DOM -->
<div id="main" style="width: 600px;height:400px;"></div>
<script type="text/javascript">
// 基于准备好的dom,初始化echarts实例
var myChart = echarts.init(document.getElementById('main'));
// 指定图表的配置项和数据
var option = {
series: [
{
type: 'gauge',
startAngle: 90,
endAngle: -269.9999,
pointer: {
show: false
},
progress: {
show: true,
overlap: false,
roundCap: true,
clip: false,
itemStyle: {
borderWidth: 1,
borderColor: '#464646',
color: '#fff'
}
},
axisLine: {
lineStyle: {
width: 10,
color: [
[0.2, '#ff4500'],
[0.8, '#48b'],
[1, '#228b22']
]
}
},
splitLine: {
distance: 0,
length: 10,
lineStyle: {
width: 2,
color: '#999'
}
},
axisTick: {
distance: 0,
length: 5,
lineStyle: {
color: '#999',
width: 1
}
},
axisLabel: {
distance: 5,
color: '#999',
fontSize: 12
},
data: [
{
value: 50,
name: '时钟'
}
]
}
]
};
// 使用刚指定的配置项和数据显示图表。
myChart.setOption(option);
</script>
</body>
</html>
```
阅读全文