import * as React from 'react'; import { Text, View, StyleSheet, Dimensions, ScrollView } from 'react- native'; import { LineChart, BarChart, PieChart, ProgressChart, ContributionGraph, StackedBarChart, } from 'react-native-chart-kit'; export default class App extends React.Component { render() { return ( {/*It is an Example of Pie Chart*/} Pie Chart `rgba(0, 0, 0, ${opacity})`, style: { borderRadius: 16, }, }} style={{ marginVertical: 8, borderRadius: 16, }} accessor="population" backgroundColor="transparent" paddingLeft="15" absolute /> ); } } const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', padding: 8, paddingTop: 30, backgroundColor: '#ecf0f1', }, });