Updated 29 June 2019
In this blog, we create a Pie Chart View. It is an awesome View to display a group of data (different category’s) into a graph. Pie Chart represent data more clear and easy to interpret.
A pie chart is a circular graph that shows the relative contribution that different categories contribute to an overall total. A wedge of the circle represents each category’s contribution, such that the graph resembles a pie that has been cut into different sized slices. Every 1% contribution that a category contributes to the total corresponds to a slice with an angle of 360 degrees.
I have learned many libraries and find an awesome library “react-native-pie”, It represents our categories Information into Pie Chart Graph.
Installation- npm install react-native-pie
Link- react-native link react-native-pie
1 |
import Pie from "react-native-pie"; |
Now the code that returns Pie Chart from render function of Component
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
return ( <View > <Pie radius={RADIOUS} innerRadius={INNER_RADIOUS} series={series} colors={COLOR} /> <View style={{ position: "absolute", width: RADIOUS * 2, height: RADIOUS * 2, alignItems: "center", justifyContent: "center", // backgroundColor:"#d0d0d0" }} > {/* Steps 1st */} <View style={styles.firstLabel} > <View style={styles.internalView}> <CustomIcon2 name="star-fill" color={COLOR[0]} size={STAR_SIZE} /> <Text style = {styles.textStyle}>{this.rating[0]}</Text> </View> <View style={styles.internalView}> <CustomIcon2 name="star-fill" color={COLOR[1]} size={STAR_SIZE} /> <Text style = {styles.textStyle}>{this.rating[1]}</Text> </View> <View style={styles.internalView}> <CustomIcon2 name="star-fill" color={COLOR[2]} size={STAR_SIZE} /> <Text style = {styles.textStyle}> {this.rating[2]}</Text> </View> </View> {/* Steps 2nd */} <View style={styles.secondLabel} > <View style={styles.internalView}> <CustomIcon2 name="star-fill" color={COLOR[3]} size={STAR_SIZE} /> <Text style = {styles.textStyle}>{this.rating[3]}</Text> </View> <View style={{ flexDirection: "row", alignItems: "center" }}> <CustomIcon2 name="star-fill" color={COLOR[4]} size={STAR_SIZE} /> <Text style = {styles.textStyle}>{this.rating[4]}</Text> </View> </View> </View> </View> ); |
In the above example represent Reviews of customer that sent 1 to 5 Rating for a product, I have sent a series of values in percentage and color array for each value to Pie view. and add the description of each value in the center of Pie View as a Star Image and text.
Resources-
https://www2.le.ac.uk/offices/ld/resources/numerical-data/pie-charts
If you have more details or questions, you can reply to the received confirmation email.
Back to Home
Be the first to comment.