UNPKG

@razorpay/blade

Version:

The Design System that powers Razorpay

26 lines (22 loc) 760 B
import * as React from 'react'; import { forwardRef } from 'react'; import { arrayTooltipSearcher } from '../state/optionsSlice.js'; import { CartesianChart } from './CartesianChart.js'; var allowedTooltipTypes = ['item']; /** * @consumes ResponsiveContainerContext * @provides CartesianViewBoxContext * @provides CartesianChartContext */ var ScatterChart = /*#__PURE__*/forwardRef((props, ref) => { return /*#__PURE__*/React.createElement(CartesianChart, { chartName: "ScatterChart", defaultTooltipEventType: "item", validateTooltipEventTypes: allowedTooltipTypes, tooltipPayloadSearcher: arrayTooltipSearcher, categoricalChartProps: props, ref: ref }); }); export { ScatterChart }; //# sourceMappingURL=ScatterChart.js.map