recharts
Version:
React charts
27 lines • 457 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',
domain: [0, 'auto'],
padding: {
top: 0,
bottom: 0
},
allowDataOverflow: false,
scale: 'auto',
reversed: false
};