代码如下
js
<template>
<div>
<div ref="test" style="width:400px";height="400px"></div>
</div>
</template>
<script>
import * as echarts from 'echarts';
import 'echarts-liquidfill';
export default{
setup(props,content){
let echart = echarts;
const test = ref(null);
function initChart(){
let chart = echart.init(test.value)
chart.setOption({
title:{
text:'',
subtext:'',
itemGap:10,
textStyle:{
fontSize:'20',
fontWeight:'800',
color:'black',
},
subtextStyle:{
fontSize:'20',
fontWeight:'800',
color:'black',
},
},
series:[
{
type:'liquidFill',
name:'',
data:[0.7],
radius:'70%',
color:'#73',
backgroundStyle:{
color:'rgba(255,255,255)',
},
outline:{
show:true
},
}
],
// 鼠标进入是否给出提示
tooltip:{
show:true,
formatter: function(params){
let tooltipe='<div>123</div>';
return tooltipe;
},
}
})
}
return{
test
};
}
}
</script>