@mui/x-charts
Version:
The community edition of the charts components (MUI X).
78 lines • 2.27 kB
JavaScript
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) {
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 ?? Scatter;
return /*#__PURE__*/_jsx(React.Fragment, {
children: seriesOrder.map(seriesId => {
const {
id,
xAxisKey,
yAxisKey,
markerSize,
color
} = series[seriesId];
const xScale = xAxis[xAxisKey ?? defaultXAxisId].scale;
const yScale = yAxis[yAxisKey ?? defaultYAxisId].scale;
return /*#__PURE__*/_jsx(ScatterItems, _extends({
xScale: xScale,
yScale: yScale,
color: color,
markerSize: markerSize ?? 4,
series: series[seriesId]
}, 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 };