react-native-charts-wrapper
Version:
A react-native charts support both android and iOS.
19 lines (14 loc) • 310 B
JavaScript
import PropTypes from 'prop-types';
import {
View
} from 'react-native';
import ChartBase from './ChartBase';
const iface = {
propTypes: {
...ChartBase.propTypes,
minOffset: PropTypes.number,
rotationEnabled: PropTypes.bool,
rotationAngle: PropTypes.number
}
};
export default iface;