source: node_modules/recharts/es6/chart/FunnelChart.js@ ba17441

Last change on this file since ba17441 was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago

Added visualizations

  • Property mode set to 100644
File size: 690 bytes
Line 
1import * as React from 'react';
2import { forwardRef } from 'react';
3import { arrayTooltipSearcher } from '../state/optionsSlice';
4import { CartesianChart } from './CartesianChart';
5var allowedTooltipTypes = ['item'];
6
7/**
8 * @consumes ResponsiveContainerContext
9 * @provides CartesianViewBoxContext
10 * @provides CartesianChartContext
11 */
12export var FunnelChart = /*#__PURE__*/forwardRef((props, ref) => {
13 return /*#__PURE__*/React.createElement(CartesianChart, {
14 chartName: "FunnelChart",
15 defaultTooltipEventType: "item",
16 validateTooltipEventTypes: allowedTooltipTypes,
17 tooltipPayloadSearcher: arrayTooltipSearcher,
18 categoricalChartProps: props,
19 ref: ref
20 });
21});
Note: See TracBrowser for help on using the repository browser.