UNPKG

react-native-charts-wrapper

Version:
25 lines (19 loc) 481 B
import {PropTypes} from 'react'; import { requireNativeComponent, View } from 'react-native'; import BarLineChartBase from './BarLineChartBase'; import {barData} from './ChartDataConfig'; const iface = { name: 'BarChart', propTypes: { ...BarLineChartBase.propTypes, drawValueAboveBar: PropTypes.bool, drawBarShadow: PropTypes.bool, data: barData } }; export default requireNativeComponent('RNBarChart', iface, { nativeOnly: { onSelect: true } });