UNPKG

recharts

Version:
81 lines (64 loc) 3.63 kB
'use strict'; var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _class, _class2, _temp; /** * @fileOverview Y Axis */ Object.defineProperty(exports, "__esModule", { value: true }); var _react = require('react'); var _react2 = _interopRequireDefault(_react); var _pureRenderDecorator = require('pure-render-decorator'); var _pureRenderDecorator2 = _interopRequireDefault(_pureRenderDecorator); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } var YAxis = (0, _pureRenderDecorator2.default)(_class = (_temp = _class2 = function (_Component) { _inherits(YAxis, _Component); function YAxis() { _classCallCheck(this, YAxis); return _possibleConstructorReturn(this, Object.getPrototypeOf(YAxis).apply(this, arguments)); } _createClass(YAxis, [{ key: 'render', value: function render() { return null; } }]); return YAxis; }(_react.Component), _class2.displayName = 'YAxis', _class2.propTypes = { hide: _react.PropTypes.bool, // The name of data displayed in the axis name: _react.PropTypes.any, // The unit of data displayed in the axis unit: _react.PropTypes.any, // The unique id of y-axis yAxisId: _react.PropTypes.number, domain: _react.PropTypes.array, // The key of data displayed in the axis dataKey: _react.PropTypes.string, // Ticks can be any type when the axis is the type of category // Ticks must be numbers when the axis is the type of number ticks: _react.PropTypes.array, // The count of ticks tickCount: _react.PropTypes.number, // The formatter function of tick tickFormatter: _react.PropTypes.func, // The width of axis, which need to be setted by user width: _react.PropTypes.number, // The height of axis which is usually calculated in Chart height: _react.PropTypes.number, // The orientation of axis orientation: _react.PropTypes.oneOf(['left', 'right']), type: _react.PropTypes.oneOf(['number', 'category']) }, _class2.defaultProps = { hide: false, orientation: 'left', width: 60, height: 0, yAxisId: 0, tickCount: 5, type: 'number' }, _temp)) || _class; exports.default = YAxis;