react-d3 / react-d3-basic

Basic d3 charts in React.js, only include: line, bar, pie, scatter, area charts.
http://reactd3.org/docs/basic
221 stars 117 forks source link

Pie chart - text overlap #53

Open seethadevi opened 6 years ago

seethadevi commented 6 years ago

I am facing issue with Pie chart , If value is zero for more then one , text are getting overlap.

screen shot 2017-11-02 at 5 28 33 pm

Pls find the image... I am using d3 chart with react. var PieChart = require('react-d3-basic').PieChart; <PieChart data= {generalChartData} width= {width} height= {height} id= {id} showLegend= {showLegend} outerRadius= {outerRadius} innerRadius= {innerRadius} pieSort = {d3.descending} chartSeries= {chartSeries} value = {value} radius= {radius} name = {name} />

Thanks in advance.