UNPKG

@mui/x-charts

Version:

The community edition of the charts components (MUI X).

215 lines (212 loc) 8.57 kB
import _extends from "@babel/runtime/helpers/esm/extends"; import _typeof from "@babel/runtime/helpers/esm/typeof"; import * as React from 'react'; import PropTypes from 'prop-types'; import { CartesianContext } from '../context/CartesianContextProvider'; import { ChartsXAxis } from '../ChartsXAxis'; import { ChartsYAxis } from '../ChartsYAxis'; import { jsx as _jsx } from "react/jsx-runtime"; import { jsxs as _jsxs } from "react/jsx-runtime"; var getAxisId = function getAxisId(propsValue) { if (propsValue == null) { return null; } if (_typeof(propsValue) === 'object') { var _propsValue$axisId; return (_propsValue$axisId = propsValue.axisId) != null ? _propsValue$axisId : null; } return propsValue; }; var mergeProps = function mergeProps(axisConfig, slots, slotProps) { return _typeof(axisConfig) === 'object' ? _extends({}, axisConfig, { slots: _extends({}, slots, axisConfig == null ? void 0 : axisConfig.slots), slotProps: _extends({}, slotProps, axisConfig == null ? void 0 : axisConfig.slotProps) }) : { slots: slots, slotProps: slotProps }; }; /** * Demos: * * - [Axis](https://mui.com/x/react-charts/axis/) * * API: * * - [ChartsAxis API](https://mui.com/x/api/charts/charts-axis/) */ function ChartsAxis(props) { var topAxis = props.topAxis, leftAxis = props.leftAxis, rightAxis = props.rightAxis, bottomAxis = props.bottomAxis, slots = props.slots, slotProps = props.slotProps; var _React$useContext = React.useContext(CartesianContext), xAxis = _React$useContext.xAxis, xAxisIds = _React$useContext.xAxisIds, yAxis = _React$useContext.yAxis, yAxisIds = _React$useContext.yAxisIds; // TODO: use for plotting line without ticks or any thing // const drawingArea = React.useContext(DrawingContext); var leftId = getAxisId(leftAxis === undefined ? yAxisIds[0] : leftAxis); var bottomId = getAxisId(bottomAxis === undefined ? xAxisIds[0] : bottomAxis); var topId = getAxisId(topAxis); var rightId = getAxisId(rightAxis); if (topId !== null && !xAxis[topId]) { throw Error(["MUI-X-Charts: id used for top axis \"".concat(topId, "\" is not defined."), "Available ids are: ".concat(xAxisIds.join(', '), ".")].join('\n')); } if (leftId !== null && !yAxis[leftId]) { throw Error(["MUI-X-Charts: id used for left axis \"".concat(leftId, "\" is not defined."), "Available ids are: ".concat(yAxisIds.join(', '), ".")].join('\n')); } if (rightId !== null && !yAxis[rightId]) { throw Error(["MUI-X-Charts: id used for right axis \"".concat(rightId, "\" is not defined."), "Available ids are: ".concat(yAxisIds.join(', '), ".")].join('\n')); } if (bottomId !== null && !xAxis[bottomId]) { throw Error(["MUI-X-Charts: id used for bottom axis \"".concat(bottomId, "\" is not defined."), "Available ids are: ".concat(xAxisIds.join(', '), ".")].join('\n')); } var topAxisProps = mergeProps(topAxis, slots, slotProps); var bottomAxisProps = mergeProps(bottomAxis, slots, slotProps); var leftAxisProps = mergeProps(leftAxis, slots, slotProps); var rightAxisProps = mergeProps(rightAxis, slots, slotProps); return /*#__PURE__*/_jsxs(React.Fragment, { children: [topId && /*#__PURE__*/_jsx(ChartsXAxis, _extends({}, topAxisProps, { position: "top", axisId: topId })), bottomId && /*#__PURE__*/_jsx(ChartsXAxis, _extends({}, bottomAxisProps, { position: "bottom", axisId: bottomId })), leftId && /*#__PURE__*/_jsx(ChartsYAxis, _extends({}, leftAxisProps, { position: "left", axisId: leftId })), rightId && /*#__PURE__*/_jsx(ChartsYAxis, _extends({}, rightAxisProps, { position: "right", axisId: rightId }))] }); } process.env.NODE_ENV !== "production" ? ChartsAxis.propTypes = { // ----------------------------- Warning -------------------------------- // | These PropTypes are generated from the TypeScript type definitions | // | To update them edit the TypeScript types and run "yarn proptypes" | // ---------------------------------------------------------------------- /** * Indicate which axis to display the bottom of the charts. * Can be a string (the id of the axis) or an object `ChartsXAxisProps`. * @default xAxisIds[0] The id of the first provided axis */ bottomAxis: PropTypes.oneOfType([PropTypes.shape({ axisId: PropTypes.string, classes: PropTypes.object, disableLine: PropTypes.bool, disableTicks: PropTypes.bool, fill: PropTypes.string, label: PropTypes.string, labelFontSize: PropTypes.number, labelStyle: PropTypes.object, position: PropTypes.oneOf(['bottom', 'top']), slotProps: PropTypes.object, slots: PropTypes.object, stroke: PropTypes.string, tickFontSize: PropTypes.number, tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]), tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]), tickLabelStyle: PropTypes.object, tickMaxStep: PropTypes.number, tickMinStep: PropTypes.number, tickNumber: PropTypes.number, tickSize: PropTypes.number }), PropTypes.string]), /** * Indicate which axis to display the left of the charts. * Can be a string (the id of the axis) or an object `ChartsYAxisProps`. * @default yAxisIds[0] The id of the first provided axis */ leftAxis: PropTypes.oneOfType([PropTypes.shape({ axisId: PropTypes.string, classes: PropTypes.object, disableLine: PropTypes.bool, disableTicks: PropTypes.bool, fill: PropTypes.string, label: PropTypes.string, labelFontSize: PropTypes.number, labelStyle: PropTypes.object, position: PropTypes.oneOf(['left', 'right']), slotProps: PropTypes.object, slots: PropTypes.object, stroke: PropTypes.string, tickFontSize: PropTypes.number, tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]), tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]), tickLabelStyle: PropTypes.object, tickMaxStep: PropTypes.number, tickMinStep: PropTypes.number, tickNumber: PropTypes.number, tickSize: PropTypes.number }), PropTypes.string]), /** * Indicate which axis to display the right of the charts. * Can be a string (the id of the axis) or an object `ChartsYAxisProps`. * @default null */ rightAxis: PropTypes.oneOfType([PropTypes.shape({ axisId: PropTypes.string, classes: PropTypes.object, disableLine: PropTypes.bool, disableTicks: PropTypes.bool, fill: PropTypes.string, label: PropTypes.string, labelFontSize: PropTypes.number, labelStyle: PropTypes.object, position: PropTypes.oneOf(['left', 'right']), slotProps: PropTypes.object, slots: PropTypes.object, stroke: PropTypes.string, tickFontSize: PropTypes.number, tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]), tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]), tickLabelStyle: PropTypes.object, tickMaxStep: PropTypes.number, tickMinStep: PropTypes.number, tickNumber: PropTypes.number, tickSize: PropTypes.number }), PropTypes.string]), /** * The props used for each component slot. * @default {} */ slotProps: PropTypes.object, /** * Overridable component slots. * @default {} */ slots: PropTypes.object, /** * Indicate which axis to display the top of the charts. * Can be a string (the id of the axis) or an object `ChartsXAxisProps`. * @default null */ topAxis: PropTypes.oneOfType([PropTypes.shape({ axisId: PropTypes.string, classes: PropTypes.object, disableLine: PropTypes.bool, disableTicks: PropTypes.bool, fill: PropTypes.string, label: PropTypes.string, labelFontSize: PropTypes.number, labelStyle: PropTypes.object, position: PropTypes.oneOf(['bottom', 'top']), slotProps: PropTypes.object, slots: PropTypes.object, stroke: PropTypes.string, tickFontSize: PropTypes.number, tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]), tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]), tickLabelStyle: PropTypes.object, tickMaxStep: PropTypes.number, tickMinStep: PropTypes.number, tickNumber: PropTypes.number, tickSize: PropTypes.number }), PropTypes.string]) } : void 0; export { ChartsAxis };