genexu / react-native-pie-chart

Simple pie chart module for your React Native app
MIT License
109 stars 47 forks source link

Put information text inside the pie chart doughnut #21

Closed richardnassar-external closed 2 years ago

richardnassar-external commented 5 years ago

Can i put text inside of the doughnut pie chart ? ( in the white area in the center )

richardnassar-external commented 5 years ago

I want to display text in the cover fill is that possible ??

richardnassar-external commented 5 years ago

solved

ratomms commented 5 years ago

@RichyNs Hi, I want to do like this. Could you tell me how to put a text inside the doughnut ? Thank you

gargankita commented 5 years ago

@RichyNs Hi, how were you able to put text inside of the doughnut pie chart , in the white area in the centre?

richardnassar-external commented 5 years ago

` <PieChart doughnut={true} chart_wh={210} series={channelSeries} coverRadius={0.55} sliceColor={sliceColor} />

${(Math.round(totalSpendingsByCategory * 100) / 100).toFixed(2)} {Spent in the last ${dashboardFilter} months}
 </View>`

and here is the style I used : pieChartContainer: { justifyContent: 'center', alignItems: 'center', marginTop: 25, }, pieFill: { position: 'absolute', width: 100, height: 100, alignItems: 'center', justifyContent: 'center', }, pieFillTextAmount: { fontSize: 18, lineHeight: 23, color: ColorPalette.purple, }, pieFillText: { fontSize: 12, lineHeight: 15, color: ColorPalette.brownishGrey, textAlign: 'center', }, ........... Hope it works as well for you.

gargankita commented 5 years ago

@RichyNs Yesit worked for me , thanks a lot

hakentty commented 4 years ago

What about Basic chart? I want to put information text inside the pie

aidin36 commented 2 years ago

I'm closing this because there was no activity here in a while.