初始化图形代码
const initChart = () => {
myChart = echarts.init(document.getElementById('chart'))
const option = {
title: {
text: '0%',
left: 'center',
top: 'center',
textStyle: {
color: '#254e99',
fontSize: '18px'
}
},
series: [
{
type: 'pie',
radius: ['70%', '80%'],
center: ['50%', '50%'],
color: '#000',
data: [
// itemSyle是单项的背景颜色设置。
{ value: 0, itemStyle: { color: '#254e99', borderRadius: 100 }, emphasis: { scale: false } },
{ value: 100, itemStyle: { color: '#f5f5f5' }, emphasis: { scale: false } }
],
label: {
// 将视觉引导图关闭
show: false
},
// 初始化e