vue-apexcharts icon indicating copy to clipboard operation
vue-apexcharts copied to clipboard

Column Chart - Hide shadow when data on hover

Open cskusuma14 opened this issue 3 years ago • 2 comments

Hi, how to hide that shadow ?

Screen Shot 2021-09-20 at 08 44 50

Is that a known issue ? Any idea to fix it ? Thanks a lot !

cskusuma14 avatar Sep 20 '21 02:09 cskusuma14

Hi @cskusuma14

Try this:

states: {
  hover: {
    filter: {
      type: 'none'
     }
  }
}

rmarmitt avatar Apr 25 '22 14:04 rmarmitt

The above answer doesn't work, so for anyone struggling with it, this is the solution:

xaxis: {
  crosshairs: {
    show: false
  }
}

Patryqss avatar Sep 19 '22 06:09 Patryqss