UNPKG

react-native-charts-wrapper

Version:
22 lines (17 loc) 421 B
import {PropTypes} from 'react'; import { requireNativeComponent, View } from 'react-native'; import BarLineChartBase from './BarLineChartBase'; import {scatterData} from './ChartDataConfig'; const iface = { name: 'ScatterChart', propTypes: { ...BarLineChartBase.propTypes, data: scatterData } }; export default requireNativeComponent('RNScatterChart', iface, { nativeOnly: { onSelect: true } });