csg-datav
Version:
Datav Document
27 lines • 478 B
JavaScript
export default {
title: {
text: '剩余油量表',
style: {
fill: '#fff'
}
},
series: [
{
type: 'gauge',
data: [ { name: 'itemA', value: 55 } ],
center: ['50%', '55%'],
axisLabel: {
formatter: '{value}%',
style: {
fill: '#fff'
}
},
axisTick: {
style: {
stroke: '#fff'
}
},
animationCurve: 'easeInOutBack'
}
]
}