可以通过option中设置title的来实现: title: { text: '88', x: 'center', y: 'center', textStyle: { color: '#333', fontWeight: 'bolder', fontSize: 64, } } =========================================================== 还可以通过markPoint来实现,使用中间是空的图形类型,然后设置borderWidth为0,这样不会显示边框,设置color对应数字文本的颜色即可,好处是可以在鼠标移上时也设置样式强调显示: markPoint : { symbol: 'emptyDiamond',/*指定一个类型*/ data : [ /*value为值,x,y对应坐标,symbolSize为显示大小*/ {name : '', value : 96.5, x:'50%', y:'50%', symbolSize:25} ], itemStyle: { normal: {/*正常显示样式*/ color:'#595959', borderWidth:0/*保证不显示边框*/ },emphasis: {/*鼠标移上样式*/ borderWidth:0 } } }
可以通过option中设置title的来实现:
===========================================================
还可以通过markPoint来实现,使用中间是空的图形类型,然后设置borderWidth为0,这样不会显示边框,设置color对应数字文本的颜色即可,好处是可以在鼠标移上时也设置样式强调显示: