UNPKG

@mui/x-charts

Version:

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

225 lines 10.4 kB
import _extends from "@babel/runtime/helpers/esm/extends"; import * as React from 'react'; import PropTypes from 'prop-types'; import { ChartContainer } from '../ChartContainer'; import { ResizableContainer } from './ResizableContainer'; import { useResponsiveChartContainerProps } from './useResponsiveChartContainerProps'; import { jsx as _jsx } from "react/jsx-runtime"; const ResponsiveChartContainer = /*#__PURE__*/React.forwardRef(function ResponsiveChartContainer(props, ref) { const { hasIntrinsicSize, chartContainerProps, resizableChartContainerProps } = useResponsiveChartContainerProps(props, ref); return /*#__PURE__*/_jsx(ResizableContainer, _extends({}, resizableChartContainerProps, { children: hasIntrinsicSize ? /*#__PURE__*/_jsx(ChartContainer, _extends({}, chartContainerProps)) : null })); }); process.env.NODE_ENV !== "production" ? ResponsiveChartContainer.propTypes = { // ----------------------------- Warning -------------------------------- // | These PropTypes are generated from the TypeScript type definitions | // | To update them edit the TypeScript types and run "pnpm proptypes" | // ---------------------------------------------------------------------- children: PropTypes.node, className: PropTypes.string, /** * Color palette used to colorize multiple series. * @default blueberryTwilightPalette */ colors: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string), PropTypes.func]), /** * An array of objects that can be used to populate series and axes data using their `dataKey` property. */ dataset: PropTypes.arrayOf(PropTypes.object), desc: PropTypes.string, /** * If `true`, the charts will not listen to the mouse move event. * It might break interactive features, but will improve performance. * @default false */ disableAxisListener: PropTypes.bool, /** * The height of the chart in px. If not defined, it takes the height of the parent element. */ height: PropTypes.number, /** * The item currently highlighted. Turns highlighting into a controlled prop. */ highlightedItem: PropTypes.shape({ dataIndex: PropTypes.number, seriesId: PropTypes.oneOfType([PropTypes.number, PropTypes.string]) }), /** * The margin between the SVG and the drawing area. * It's used for leaving some space for extra information such as the x- and y-axis or legend. * Accepts an object with the optional properties: `top`, `bottom`, `left`, and `right`. * @default object Depends on the charts type. */ margin: PropTypes.shape({ bottom: PropTypes.number, left: PropTypes.number, right: PropTypes.number, top: PropTypes.number }), /** * The callback fired when the highlighted item changes. * * @param {HighlightItemData | null} highlightedItem The newly highlighted item. */ onHighlightChange: PropTypes.func, /** * An array of plugins defining how to preprocess data. * If not provided, the container supports line, bar, scatter and pie charts. */ plugins: PropTypes.arrayOf(PropTypes.object), /** * The array of series to display. * Each type of series has its own specificity. * Please refer to the appropriate docs page to learn more about it. */ series: PropTypes.arrayOf(PropTypes.object).isRequired, sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]), title: PropTypes.string, viewBox: PropTypes.shape({ height: PropTypes.number, width: PropTypes.number, x: PropTypes.number, y: PropTypes.number }), /** * The width of the chart in px. If not defined, it takes the width of the parent element. */ width: PropTypes.number, /** * The configuration of the x-axes. * If not provided, a default axis config is used. * An array of [[AxisConfig]] objects. */ xAxis: PropTypes.arrayOf(PropTypes.shape({ classes: PropTypes.object, colorMap: PropTypes.oneOfType([PropTypes.shape({ colors: PropTypes.arrayOf(PropTypes.string).isRequired, type: PropTypes.oneOf(['ordinal']).isRequired, unknownColor: PropTypes.string, values: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number, PropTypes.string]).isRequired) }), PropTypes.shape({ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired, max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]), min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]), type: PropTypes.oneOf(['continuous']).isRequired }), PropTypes.shape({ colors: PropTypes.arrayOf(PropTypes.string).isRequired, thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired, type: PropTypes.oneOf(['piecewise']).isRequired })]), data: PropTypes.array, dataKey: PropTypes.string, disableLine: PropTypes.bool, disableTicks: PropTypes.bool, fill: PropTypes.string, hideTooltip: PropTypes.bool, id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]), label: PropTypes.string, labelFontSize: PropTypes.number, labelStyle: PropTypes.object, max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]), min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]), position: PropTypes.oneOf(['bottom', 'top']), reverse: PropTypes.bool, scaleType: PropTypes.oneOf(['band', 'linear', 'log', 'point', 'pow', 'sqrt', 'time', 'utc']), slotProps: PropTypes.object, slots: PropTypes.object, stroke: PropTypes.string, sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]), tickFontSize: PropTypes.number, tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]), tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]), tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']), tickLabelStyle: PropTypes.object, tickMaxStep: PropTypes.number, tickMinStep: PropTypes.number, tickNumber: PropTypes.number, tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']), tickSize: PropTypes.number, valueFormatter: PropTypes.func })), /** * The configuration of the y-axes. * If not provided, a default axis config is used. * An array of [[AxisConfig]] objects. */ yAxis: PropTypes.arrayOf(PropTypes.shape({ classes: PropTypes.object, colorMap: PropTypes.oneOfType([PropTypes.shape({ colors: PropTypes.arrayOf(PropTypes.string).isRequired, type: PropTypes.oneOf(['ordinal']).isRequired, unknownColor: PropTypes.string, values: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number, PropTypes.string]).isRequired) }), PropTypes.shape({ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired, max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]), min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]), type: PropTypes.oneOf(['continuous']).isRequired }), PropTypes.shape({ colors: PropTypes.arrayOf(PropTypes.string).isRequired, thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired, type: PropTypes.oneOf(['piecewise']).isRequired })]), data: PropTypes.array, dataKey: PropTypes.string, disableLine: PropTypes.bool, disableTicks: PropTypes.bool, fill: PropTypes.string, hideTooltip: PropTypes.bool, id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]), label: PropTypes.string, labelFontSize: PropTypes.number, labelStyle: PropTypes.object, max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]), min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]), position: PropTypes.oneOf(['left', 'right']), reverse: PropTypes.bool, scaleType: PropTypes.oneOf(['band', 'linear', 'log', 'point', 'pow', 'sqrt', 'time', 'utc']), slotProps: PropTypes.object, slots: PropTypes.object, stroke: PropTypes.string, sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]), tickFontSize: PropTypes.number, tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]), tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]), tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']), tickLabelStyle: PropTypes.object, tickMaxStep: PropTypes.number, tickMinStep: PropTypes.number, tickNumber: PropTypes.number, tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']), tickSize: PropTypes.number, valueFormatter: PropTypes.func })), /** * The configuration of the z-axes. */ zAxis: PropTypes.arrayOf(PropTypes.shape({ colorMap: PropTypes.oneOfType([PropTypes.shape({ colors: PropTypes.arrayOf(PropTypes.string).isRequired, type: PropTypes.oneOf(['ordinal']).isRequired, unknownColor: PropTypes.string, values: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number, PropTypes.string]).isRequired) }), PropTypes.shape({ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired, max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]), min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]), type: PropTypes.oneOf(['continuous']).isRequired }), PropTypes.shape({ colors: PropTypes.arrayOf(PropTypes.string).isRequired, thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired, type: PropTypes.oneOf(['piecewise']).isRequired })]), data: PropTypes.array, dataKey: PropTypes.string, id: PropTypes.string, max: PropTypes.number, min: PropTypes.number })) } : void 0; export { ResponsiveChartContainer };