Bootstrap

echarts漏斗图鼠标移入时内部文字阴影/描边

问题

当移入时,文字会有描边,且颜色为item不高亮时的颜色。想要去除。
在这里插入图片描述

解决

  • 属性
    鼠标移入时的属性在series中的label中的emphasis属性修改。
    添加textBorderWidthtextBorderColor属性,为文字描边效果的设置。
  • 解决方法
    只设置textBorderWidth为0无法生效,需要同时设置textBorderColor属性。textBorderColor设置任意颜色均可,注意,不可设置为’'或者不设置该属性
  • 代码片段
label: {
                normal: { // 金字塔标签,静态的时候显示的默认样式
                  show: true,
                  formatter: '{b} {c}',
                  position: 'inside',
                  fontSize: 12,
                  color: '#666666'
                },
                emphasis: { // 鼠标移入动态的时候显示的默认样式
                  textStyle: {
                    fontSize: 15,
                    textBorderWidth: 0,
                    textBorderColor:'#666666'
                  }
                }
              },
  • 完成效果
    在这里插入图片描述
;