recharts
Version:
React charts
27 lines (26 loc) • 435 B
JavaScript
/**
* @fileOverview Y Axis
*/
export var YAxis = function YAxis() {
return null;
};
YAxis.displayName = 'YAxis';
YAxis.defaultProps = {
allowDuplicatedCategory: true,
allowDecimals: true,
hide: false,
orientation: 'left',
width: 60,
height: 0,
mirror: false,
yAxisId: 0,
tickCount: 5,
type: 'number',
padding: {
top: 0,
bottom: 0
},
allowDataOverflow: false,
scale: 'auto',
reversed: false
};