React native pie chart

1.1k Views Asked by At

How can I draw a pie chart like this? I'm using VictoryPie and VictoryLabel from library victory-native, but I cannot set label position and background color for each label depending on the data and I cannot set the border white like that. Is there any library that can resolve this?

this is the chart in design

1

There are 1 best solutions below

0
On

I think a version of what you want can be achieved via victor-native just put your data like this:

data: [
{ y: 50, x: '50%'},
{ y: 20, x: '20%'},
{ y: 10, x: '10%'},
{ y: 15, x: '15%'},
{ y: 5, x: '5%'},
],

Check out this medium on piecharts