recharts
Version:
React charts
35 lines (32 loc) • 582 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.XAxis = void 0;
/**
* @fileOverview X Axis
*/
/** Define of XAxis props */
var XAxis = exports.XAxis = function XAxis() {
return null;
};
XAxis.displayName = 'XAxis';
XAxis.defaultProps = {
allowDecimals: true,
hide: false,
orientation: 'bottom',
width: 0,
height: 30,
mirror: false,
xAxisId: 0,
tickCount: 5,
type: 'category',
padding: {
left: 0,
right: 0
},
allowDataOverflow: false,
scale: 'auto',
reversed: false,
allowDuplicatedCategory: true
};
;