recharts
Version:
React charts
33 lines (31 loc) • 548 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.YAxis = void 0;
/**
* @fileOverview Y Axis
*/
var YAxis = exports.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
};
;