UNPKG

@mui/x-charts

Version:

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

79 lines 2.45 kB
import _extends from "@babel/runtime/helpers/esm/extends"; import * as React from 'react'; import PropTypes from 'prop-types'; import { Scatter } from './Scatter'; import { SeriesContext } from '../context/SeriesContextProvider'; import { CartesianContext } from '../context/CartesianContextProvider'; import { jsx as _jsx } from "react/jsx-runtime"; /** * Demos: * * - [Scatter](https://mui.com/x/react-charts/scatter/) * - [Scatter demonstration](https://mui.com/x/react-charts/scatter-demo/) * * API: * * - [ScatterPlot API](https://mui.com/x/api/charts/scatter-plot/) */ function ScatterPlot(props) { var _slots$scatter; const { slots, slotProps } = props; const seriesData = React.useContext(SeriesContext).scatter; const axisData = React.useContext(CartesianContext); if (seriesData === undefined) { return null; } const { series, seriesOrder } = seriesData; const { xAxis, yAxis, xAxisIds, yAxisIds } = axisData; const defaultXAxisId = xAxisIds[0]; const defaultYAxisId = yAxisIds[0]; const ScatterItems = (_slots$scatter = slots == null ? void 0 : slots.scatter) != null ? _slots$scatter : Scatter; return /*#__PURE__*/_jsx(React.Fragment, { children: seriesOrder.map(seriesId => { const { id, xAxisKey, yAxisKey, markerSize, color } = series[seriesId]; const xScale = xAxis[xAxisKey != null ? xAxisKey : defaultXAxisId].scale; const yScale = yAxis[yAxisKey != null ? yAxisKey : defaultYAxisId].scale; return /*#__PURE__*/_jsx(ScatterItems, _extends({ xScale: xScale, yScale: yScale, color: color, markerSize: markerSize != null ? markerSize : 4, series: series[seriesId] }, slotProps == null ? void 0 : slotProps.scatter), id); }) }); } process.env.NODE_ENV !== "production" ? ScatterPlot.propTypes = { // ----------------------------- Warning -------------------------------- // | These PropTypes are generated from the TypeScript type definitions | // | To update them edit the TypeScript types and run "yarn proptypes" | // ---------------------------------------------------------------------- /** * The props used for each component slot. * @default {} */ slotProps: PropTypes.object, /** * Overridable component slots. * @default {} */ slots: PropTypes.object } : void 0; export { ScatterPlot };