Open nounla opened 9 years ago
I tried the following code to show the label, but the label still disappear
chart: { type: 'sunburstChart', height: 700, color: d3.scale.category20c(), duration: 250 }, key: function(d){return d.name}, showLabels: true, mode: "size", labelFormat: function (d){if(mode === 'count'){return d.name + '#' + d.value}else{return d+ ' '}}
I am new to NVD3 sunburst chart and tried to show labels and legend for sun burst chart. Can we show labels and legend for sun burst chart using nvd3 and if yes, how?