native-charts
Version:
With native-charts components, you can transform your data into graphs in your react-native applications.
20 lines (18 loc) • 360 B
JavaScript
import {StyleSheet} from 'react-native';
const style = StyleSheet.create({
xLabel: {
flex: 1,
flexDirection: 'row',
},
yLabel: {
flexDirection: 'column',
marginTop: -6,
},
text: {
height: 10,
paddingRight: 4,
fontSize: 10,
textAlign: 'left',
},
});
export default style;