UNPKG

@mui/x-charts

Version:

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

411 lines 15.2 kB
import _extends from "@babel/runtime/helpers/esm/extends"; import * as React from 'react'; import useId from '@mui/utils/useId'; import PropTypes from 'prop-types'; import { AreaPlot } from './AreaPlot'; import { LinePlot } from './LinePlot'; import { ResponsiveChartContainer } from '../ResponsiveChartContainer'; import { MarkPlot } from './MarkPlot'; import { ChartsAxis } from '../ChartsAxis/ChartsAxis'; import { DEFAULT_X_AXIS_KEY } from '../constants'; import { ChartsTooltip } from '../ChartsTooltip'; import { ChartsLegend } from '../ChartsLegend'; import { ChartsAxisHighlight } from '../ChartsAxisHighlight'; import { ChartsClipPath } from '../ChartsClipPath'; import { LineHighlightPlot } from './LineHighlightPlot'; import { jsx as _jsx } from "react/jsx-runtime"; import { jsxs as _jsxs } from "react/jsx-runtime"; /** * Demos: * * - [Lines](https://mui.com/x/react-charts/lines/) * - [Line demonstration](https://mui.com/x/react-charts/line-demo/) * * API: * * - [LineChart API](https://mui.com/x/api/charts/line-chart/) */ const LineChart = /*#__PURE__*/React.forwardRef(function LineChart(props, ref) { const { xAxis, yAxis, series, width, height, margin, colors, dataset, sx, tooltip, axisHighlight = { x: 'line' }, disableLineItemHighlight, legend, topAxis, leftAxis, rightAxis, bottomAxis, children, slots, slotProps } = props; const id = useId(); const clipPathId = `${id}-clip-path`; return /*#__PURE__*/_jsxs(ResponsiveChartContainer, { ref: ref, series: series.map(s => _extends({ disableHighlight: !!disableLineItemHighlight, type: 'line' }, s)), width: width, height: height, margin: margin, xAxis: xAxis != null ? xAxis : [{ id: DEFAULT_X_AXIS_KEY, scaleType: 'point', data: Array.from({ length: Math.max(...series.map(s => { var _ref, _s$data; return ((_ref = (_s$data = s.data) != null ? _s$data : dataset) != null ? _ref : []).length; })) }, (_, index) => index) }], yAxis: yAxis, colors: colors, dataset: dataset, sx: sx, disableAxisListener: (tooltip == null ? void 0 : tooltip.trigger) !== 'axis' && (axisHighlight == null ? void 0 : axisHighlight.x) === 'none' && (axisHighlight == null ? void 0 : axisHighlight.y) === 'none', children: [/*#__PURE__*/_jsxs("g", { clipPath: `url(#${clipPathId})`, children: [/*#__PURE__*/_jsx(AreaPlot, { slots: slots, slotProps: slotProps }), /*#__PURE__*/_jsx(LinePlot, { slots: slots, slotProps: slotProps })] }), /*#__PURE__*/_jsx(ChartsAxis, { topAxis: topAxis, leftAxis: leftAxis, rightAxis: rightAxis, bottomAxis: bottomAxis, slots: slots, slotProps: slotProps }), /*#__PURE__*/_jsx(ChartsAxisHighlight, _extends({}, axisHighlight)), /*#__PURE__*/_jsx(MarkPlot, { slots: slots, slotProps: slotProps }), /*#__PURE__*/_jsx(LineHighlightPlot, { slots: slots, slotProps: slotProps }), /*#__PURE__*/_jsx(ChartsLegend, _extends({}, legend, { slots: slots, slotProps: slotProps })), /*#__PURE__*/_jsx(ChartsTooltip, _extends({}, tooltip, { slots: slots, slotProps: slotProps })), /*#__PURE__*/_jsx(ChartsClipPath, { id: clipPathId }), children] }); }); process.env.NODE_ENV !== "production" ? LineChart.propTypes = { // ----------------------------- Warning -------------------------------- // | These PropTypes are generated from the TypeScript type definitions | // | To update them edit the TypeScript types and run "yarn proptypes" | // ---------------------------------------------------------------------- /** * Object `{ x, y }` that defines how the charts highlight the mouse position along the x- and y-axes. * The two properties accept the following values: * - 'none': display nothing. * - 'line': display a line at the current mouse position. * - 'band': display a band at the current mouse position. Only available with band scale. */ axisHighlight: PropTypes.shape({ x: PropTypes.oneOf(['band', 'line', 'none']), y: PropTypes.oneOf(['band', 'line', 'none']) }), /** * 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]), children: PropTypes.node, className: PropTypes.string, /** * Color palette used to colorize multiple series. */ 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, /** * If `true`, render the line highlight item. */ disableLineItemHighlight: PropTypes.bool, /** * The height of the chart in px. If not defined, it takes the height of the parent element. * @default undefined */ height: PropTypes.number, /** * 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]), /** * @deprecated Consider using `slotProps.legend` instead. */ legend: PropTypes.shape({ classes: PropTypes.object, direction: PropTypes.oneOf(['column', 'row']), hidden: PropTypes.bool, position: PropTypes.shape({ horizontal: PropTypes.oneOf(['left', 'middle', 'right']).isRequired, vertical: PropTypes.oneOf(['bottom', 'middle', 'top']).isRequired }), slotProps: PropTypes.object, slots: PropTypes.object }), /** * 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 }), /** * 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]), series: PropTypes.arrayOf(PropTypes.shape({ area: PropTypes.bool, color: PropTypes.string, connectNulls: PropTypes.bool, curve: PropTypes.oneOf(['catmullRom', 'linear', 'monotoneX', 'monotoneY', 'natural', 'step', 'stepAfter', 'stepBefore']), data: PropTypes.arrayOf(PropTypes.number), dataKey: PropTypes.string, disableHighlight: PropTypes.bool, highlightScope: PropTypes.shape({ faded: PropTypes.oneOf(['global', 'none', 'series']), highlighted: PropTypes.oneOf(['item', 'none', 'series']) }), id: PropTypes.string, label: PropTypes.string, showMark: PropTypes.oneOfType([PropTypes.func, PropTypes.bool]), stack: PropTypes.string, stackOffset: PropTypes.oneOf(['diverging', 'expand', 'none', 'silhouette', 'wiggle']), stackOrder: PropTypes.oneOf(['appearance', 'ascending', 'descending', 'insideOut', 'none', 'reverse']), type: PropTypes.oneOf(['line']), valueFormatter: PropTypes.func, xAxisKey: PropTypes.string, yAxisKey: PropTypes.string })).isRequired, /** * The props used for each component slot. * @default {} */ slotProps: PropTypes.object, /** * Overridable component slots. * @default {} */ slots: PropTypes.object, sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]), title: PropTypes.string, tooltip: PropTypes.shape({ axisContent: PropTypes.elementType, classes: PropTypes.object, itemContent: PropTypes.elementType, slotProps: PropTypes.object, slots: PropTypes.object, trigger: PropTypes.oneOf(['axis', 'item', 'none']) }), /** * 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]), 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. * @default undefined */ width: PropTypes.number, /** * The configuration of the x-axes. * If not provided, a default axis config is used with id set to `DEFAULT_X_AXIS_KEY`. */ xAxis: PropTypes.arrayOf(PropTypes.shape({ axisId: PropTypes.string, classes: PropTypes.object, data: PropTypes.array, dataKey: PropTypes.string, disableLine: PropTypes.bool, disableTicks: PropTypes.bool, fill: PropTypes.string, hideTooltip: PropTypes.bool, id: 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', 'left', 'right', 'top']), scaleType: PropTypes.oneOf(['band', 'linear', 'log', 'point', 'pow', 'sqrt', 'time', 'utc']), 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, valueFormatter: PropTypes.func })), /** * The configuration of the y-axes. * If not provided, a default axis config is used with id set to `DEFAULT_Y_AXIS_KEY`. */ yAxis: PropTypes.arrayOf(PropTypes.shape({ axisId: PropTypes.string, classes: PropTypes.object, data: PropTypes.array, dataKey: PropTypes.string, disableLine: PropTypes.bool, disableTicks: PropTypes.bool, fill: PropTypes.string, hideTooltip: PropTypes.bool, id: 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', 'left', 'right', 'top']), scaleType: PropTypes.oneOf(['band', 'linear', 'log', 'point', 'pow', 'sqrt', 'time', 'utc']), 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, valueFormatter: PropTypes.func })) } : void 0; export { LineChart };