当前位置: 首页 > 知识库问答 >
问题:

前端 - echart 柱体图,悬浮某个数据的时候会有灰蓝色的背景块,怎么去掉?

钱季
2023-06-27

image.png

共有3个答案

包阳成
2023-06-27

那是高亮时的样式,可以通过emphasis关闭

image.png

邢博涛
2023-06-27

series添加这个就行了:

  axisPointer: {
    show: false,
  },

image.png

https://echarts.apache.org/examples/zh/editor.html?c=bar-y-ca...
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'
    }
  ]
};
连德义
2023-06-27
axisPointer: {
      // Use axis to trigger tooltip
      type: 'shadow', // 'shadow' as default; can also be 'line' or 'shadow'
      shadowStyle: {
        // color: 'transparent'
        color: '#f00'
      }
    }

试试在 axisPointer 中添加 shadowStyle 属性

效果

image.png

 类似资料: