Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable default highlight on hover in Apache Echarts

Echart version update highlight the line series on hover by default, is there any workaround or a fix for this issue? To keep it more static and not highlight the lineseries data?

like image 628
Darth Avatar asked Oct 26 '25 18:10

Darth


1 Answers

You can set emphasis to disabled:

  series: [
    {
      data: [120, 200, 150, 80, 70, 110, 130],
      type: 'bar',
              emphasis: {
                disabled: true
          
        },
    },
  ]
like image 162
Eli Zatlawy Avatar answered Oct 29 '25 19:10

Eli Zatlawy



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!