UNPKG

react-native-pathjs-charts

Version:

Cross platform React Native charting library based on path-js and react-native-svg

57 lines (52 loc) 950 B
# Pie Charts Basic Pie Chart ```javascript render() { let data = [{ "name": "Washington", "population": 7694980 }, { "name": "Oregon", "population": 2584160 }, { "name": "Minnesota", "population": 6590667 }, { "name": "Alaska", "population": 7284698 }] let options = { margin: { top: 20, left: 20, right: 20, bottom: 20 }, width: 350, height: 350, color: '#2980B9', r: 50, R: 150, legendPosition: 'topLeft', animate: { type: 'oneByOne', duration: 200, fillTransition: 3 }, label: { fontFamily: 'Arial', fontSize: 8, fontWeight: true, color: '#ECF0F1' } } return ( <View> <Pie data={data} options={options} accessorKey="population" /> </View> ) } ```