I am trying to use d3.js
pie chart, problem is if the percent is small for some section then the label get cut with section.
var data = [{"label":"Category A", "value":5},
{"label":"Category B", "value":50},
{"label":"Category C", "value":30}];
"Category A" label does not fit in small section. How can I make label visible even if the section is small?