vue实现echarts中的仪表盘本⽂实例为⼤家分享了vue实现echarts中的仪表盘的具体代码,供⼤家参考,具体内容如下最终结果
⼀、安装
1. ⾸先需要安装echarts依赖包
npm install echarts -S
2. 或者使⽤国内的淘宝镜像:
npm install -g cnpm --registry=registry.
⼆、创建图表
全局引⼊
main.js
// 引⼊echarts
import echarts from 'echarts'
Vue.prototype.$echarts = echarts
Hello.vue
<div id="myChart" :></div>
export default {
data(){
return {}
},
mounted(){
},
methods:{
myChart() {
let columnar = this.$echarts.ElementById('myChart'));
columnar.setOption({
tooltip : {
formatter: "{a} <br/>{c} {b}"
},
toolbox: {
show: true,
feature: {
restore: {show: true},
saveAsImage: {show: true}
}
},
series : [
{
name: '空⽓质量:',
type: 'gauge',
z: 3,
min: 0,
max: 500,
splitNumber: 10,
radius: '60%',
axisLine: {
lineStyle: {
width: 10,
color: [[0.1, 'green'], [0.2, 'yellow'],[0.3, 'orange'],[0.4,'#db555e'],[0.5,'#ba3779'],[1.1,'#881326'] ] }
},
axisTick: {
length: 15,
lineStyle: {
color: 'auto'
}
},
//刻度分割线样式
splitLine: {
length: 20,
lineStyle: {
color: 'white'
}
},
//刻度数字样式
axisLabel: {
fontWeight:'bold',
color: '#0085FF',
},
detail : {
//说明数字⼤⼩
formatter: function (value) {
return value;
},
font weight bolderoffsetCenter:['0%','80%'],
fontWeight: 'bolder',
borderRadius: 3,
backgroundColor: '#0085FF',
fontSize:14,
width: 100,
color: 'white',
padding:[5,15,2,15]
},
data:[1,2,3,4,5,6,7]
},
{
name: 'PM2.5:',
type: 'gauge',
center: ['20%', '55%'],
radius: '40%',
min:0,
max:350,
valu:55,
endAngle:45,
splitNumber:5,
axisLine: {
lineStyle: {
width: 8,
color: [[0.2, 'green'], [0.4, 'yellow'],[1.1,'orange'] ] }
},
axisTick: {
length:12,
lineStyle: {
color: 'auto'
}
},
splitLine: {
length:20,
lineStyle: {
color: 'auto'
}
},
pointer: {
width:5,
color:'red'
},
//刻度数字样式
axisLabel: {
fontWeight:'bold',
color: '#0085FF',
fontSize:8, //改变仪表盘内刻度数字的⼤⼩
},
detail: {
formatter: function (value) {
return value;
},
offsetCenter:['15%','75%'],
fontWeight: 'bolder',
borderRadius: 3,
backgroundColor: '#0085FF',
fontSize:14,
width: 100,
color: 'white',
padding:[5,15,2,15]
},
data:[1,2,3,4,5,6]
},
{
name: 'PM10:',
type: 'gauge',
//仪表盘位置
center: ['79%', '55%'],
//仪表盘半径
radius: '40%',
min:0,
max:500,
startAngle:130,
splitNumber:5,
//仪表盘弧线宽度
axisLine: {
lineStyle: {
width: 8,
color: [[0.2, 'green'], [0.4, 'yellow'],[1, 'orange'] ] }
},
//仪表盘⼩刻度样式
axisTick: {
length:12,
lineStyle: {
color: 'auto'
}
},
//仪表盘⼤刻度样式
splitLine: {
length:20,
lineStyle: {
color: 'auto'
}
},
//仪表盘指针样式
pointer: {
width:5,//指针的宽度
length:"60%", //指针长度,按照半圆半径的百分⽐ shadowColor : 'blue', //默认透明
shadowBlur: 5
},
//刻度数字样式
axisLabel: {
fontWeight:'bold',
color: 'auto',
fontSize:8, //改变仪表盘内刻度数字的⼤⼩
},
detail: {
//说明数字⼤⼩
formatter: function (value) {
return value;
},
//仪表盘下⽅⽂字说明
offsetCenter:['0%','80%'],
fontWeight: 'bolder',
borderRadius: 3,
backgroundColor: '#0085FF',
fontSize:14,
width: 100,
color: 'white',
padding:[5,15,2,15]
},
data:[1,2,3,4]
}
]
})
}
}
以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论