When using pie charts in c3js, a hand cursor (pointer) is displayed by default when hovering over a pie slice. I am looking to achieve the same behavior for each bar in a bar chart. How can this be done?
I attempted the CSS below, but it resulted in the hand cursor showing even when hovering between two bars.
.c3-event-rect {
cursor: pointer;
}
Just to clarify, this can be seen in a jsfiddle example, where I would like the pointer cursor to only appear on bar items as they are the clickable elements.