Files
url_tracker_tool/node_modules/recharts/lib/chart/PieChart.js
Andrei 58f8093689 Rebrand from 'Redirect Intelligence v2' to 'URL Tracker Tool V2' throughout UI
- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
2025-08-19 19:12:23 +00:00

39 lines
1.0 KiB
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.PieChart = void 0;
var _generateCategoricalChart = require("./generateCategoricalChart");
var _PolarAngleAxis = require("../polar/PolarAngleAxis");
var _PolarRadiusAxis = require("../polar/PolarRadiusAxis");
var _PolarUtils = require("../util/PolarUtils");
var _Pie = require("../polar/Pie");
/**
* @fileOverview Pie Chart
*/
var PieChart = exports.PieChart = (0, _generateCategoricalChart.generateCategoricalChart)({
chartName: 'PieChart',
GraphicalChild: _Pie.Pie,
validateTooltipEventTypes: ['item'],
defaultTooltipEventType: 'item',
legendContent: 'children',
axisComponents: [{
axisType: 'angleAxis',
AxisComp: _PolarAngleAxis.PolarAngleAxis
}, {
axisType: 'radiusAxis',
AxisComp: _PolarRadiusAxis.PolarRadiusAxis
}],
formatAxisMap: _PolarUtils.formatAxisMap,
defaultProps: {
layout: 'centric',
startAngle: 0,
endAngle: 360,
cx: '50%',
cy: '50%',
innerRadius: 0,
outerRadius: '80%'
}
});