echarts 圆环图 高亮事件 切换 中心文字

javascript 复制代码
createEcharts() {
  let chartDom = this.$refs.echarts
  this.Echarts = echarts.init(chartDom)

  let option = {
    title: {
      text: '128', //主标题文本
      subtext: '总数', //副标题文本
      left: 'center',
      top: '32%',
      textStyle: {
        fontFamily: 'Montserrat-MediumItalic',
        fontSize: 30,
        color: '#fff',
        align: 'center',
      },
      subtextStyle: {
        fontFamily: 'Source Han Sans CN',
        fontSize: 16,
        color: '#AEAEB2',
      },
    },
    series: [
      {
        type: 'pie',
        center: ['50%', '50%'],
        radius: ['50%', '60%'],
        label: {
          color: '#fff',
        },
        itemStyle: {
          borderColor: '#1b2b3c',
          borderWidth: 2,
        },
        data: [
          { value: 128, name: '正常', itemStyle: { color: '#92c7f7' } },
          { value: 24, name: '离线', itemStyle: { color: '#c0c5c9' } },
          { value: 6, name: '故障', itemStyle: { color: '#ff673b' } },
        ],
      },
    ],
  }
  
  this.Echarts.on('mouseover', (params) => {
    // 获取高亮的数据项的值
    let highlightedValue = params.data.value

    // 更新饼图标题
    this.Echarts.setOption({
      title: {
        text: highlightedValue,
      },
    })
  })

  option && this.Echarts.setOption(option)
},
相关推荐
谁呛我名字30 分钟前
大数据应用开发——数据可视化
javascript·vue.js·echarts
羡与1 天前
echarts-gl 3D柱状图配置
前端·javascript·echarts
NiNg_1_2342 天前
ECharts实现数据可视化入门详解
前端·信息可视化·echarts
还是大剑师兰特2 天前
D3的竞品有哪些,D3的优势,D3和echarts的对比
前端·javascript·echarts
菌菌子丶3 天前
ECharts 实现大屏地图功能
前端·javascript·echarts
我很苦涩的3 天前
微信小程序使用uni cli框架绘制echarts图表
微信小程序·小程序·echarts
自求多芙4 天前
Apache ECharts
前端·apache·echarts
2301_811212334 天前
React的概念以及发展前景如何?
css·ajax·前端框架·json·echarts·html5·easyui
wfsm5 天前
uniapp使用echarts
javascript·uni-app·echarts
Lojarro5 天前
【Apache ECharts】<病虫害致粮食损失统计>
前端·javascript·echarts