react-native-ios-charts RadarChart example
March 13, 2016 ยท View on GitHub
import React, { AppRegistry, Component, StyleSheet, View } from 'react-native'; import { RadarChart } from 'react-native-ios-charts';
class charts extends Component {
render() {
return (
const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center', backgroundColor: '#F5FCFF' }, chart: { width: 350, height: 500 } });