Rocky_Mountain_Vending/.pnpm-store/v10/files/f1/43e76584478519b5606d31afe48646dfb0f45f568bf4cae0667b734c2c81454aec37253bd5ad42519e52768884cc11fd1da17d255fb182a0804fe0f4f61197
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

22 lines
No EOL
570 B
Text

"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'
}
});