This repository has been archived on 2025-07-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
2025-01-11 09:54:09 +03:00

22 lines
570 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.FunnelChart = void 0;
var _generateCategoricalChart = require("./generateCategoricalChart");
var _Funnel = require("../numberAxis/Funnel");
/**
* @fileOverview Funnel Chart
*/
var FunnelChart = exports.FunnelChart = (0, _generateCategoricalChart.generateCategoricalChart)({
chartName: 'FunnelChart',
GraphicalChild: _Funnel.Funnel,
validateTooltipEventTypes: ['item'],
defaultTooltipEventType: 'item',
axisComponents: [],
defaultProps: {
layout: 'centric'
}
});