Is there an option that disables the "cursor: pointer" style from the c3|d3 pie chart? I simply display slices and on hover just show the % percentage and a label, do not need the pointer because it is misunderstood as a link to somewhere, yet it is the default cursor...
Update 1: I found a workaround, but it does not answer my question..
onrendered: function () { $('#my_chart_id .c3-shape').css('cursor', 'default'); }