In pie charts, c3js by default shows a hand cursor (pointer) when a piece of cake hangs. I would like to have the same behavior for every bar in the histogram. How to achieve this?
I tried the css below, but it shows the hand cursor even when you hover between 2 bars.
.c3-event-rect {
cursor:pointer;
}
To clarify this, the jsfiddle example
I would like to have a cursor pointer only on the elements of the panel, because only they are available for click.
source
share