我的CSDN地址:https://blog.csdn.net/weixin_39428080
option = {
tooltip : {
formatter: "{a} <br/>{b} : {c}%"
},
toolbox: {
feature: {
restore: {},
saveAsImage: {}
}
},
series: [
{
name: '业务指标',
type: 'gauge',
detail: {formatter:'{value}%'},
data: [{value: 50, name: '完成率'}],
splitNumber:10,
radius: '50%',
axisLine: { // 坐标轴线
lineStyle: { // 属性lineStyle控制线条样式
color: [[1, 'black']],//修改指针颜色,指针颜色根据仪表盘颜色变化
width: 3,
shadowColor : '#fff', //默认透明
shadowBlur: 10
}
},
}
]
};
setInterval(function () {
option.series[0].data[0].value = (Math.random() * 100).toFixed(2) - 0;
myChart.setOption(option, true);
},2000);
image
image.gif
网友评论