How to highlight a single bar in. Bar chart on hover

Hi!
I’m trying to highlight a single bar in a bar chart on hover.
Any ideas?

Hello @Karnishitrit,

If you don’t need to display any data associated with it, the easiest way would be to get this through css.

Find the class of the bar and then do this:

.class:hover {
     filter: brightness(1.1)
}