|
Last change
on this file since a762898 was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago |
|
Added visualizations
|
-
Property mode
set to
100644
|
|
File size:
690 bytes
|
| Line | |
|---|
| 1 | import * as React from 'react';
|
|---|
| 2 | import { forwardRef } from 'react';
|
|---|
| 3 | import { arrayTooltipSearcher } from '../state/optionsSlice';
|
|---|
| 4 | import { CartesianChart } from './CartesianChart';
|
|---|
| 5 | var allowedTooltipTypes = ['item'];
|
|---|
| 6 |
|
|---|
| 7 | /**
|
|---|
| 8 | * @consumes ResponsiveContainerContext
|
|---|
| 9 | * @provides CartesianViewBoxContext
|
|---|
| 10 | * @provides CartesianChartContext
|
|---|
| 11 | */
|
|---|
| 12 | export 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.