echarts-鼠标移动到柱状图上显示y 值

option = {
  xAxis: {
    type: 'category',
    data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
  },
  yAxis: {
    type: 'value'
  },
  series: [
    {
      data: [120, 200, 150, 80, 70, 110, 130],
      type: 'bar',
      showBackground: true,
      backgroundStyle: {
        color: 'rgba(180, 180, 180, 0.2)'
      },
      // 重点是 下方代码
      emphasis: { label: { show: true ,position:'top'} },
    }
  ]
};

你可能感兴趣的:(数据可视化,echarts,前端)