Initial commit
This commit is contained in:
commit
78f8d225ee
21173 changed files with 2907774 additions and 0 deletions
36
node_modules/recharts/lib/chart/RadarChart.js
generated
vendored
Normal file
36
node_modules/recharts/lib/chart/RadarChart.js
generated
vendored
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.RadarChart = void 0;
|
||||
var _generateCategoricalChart = require("./generateCategoricalChart");
|
||||
var _Radar = require("../polar/Radar");
|
||||
var _PolarAngleAxis = require("../polar/PolarAngleAxis");
|
||||
var _PolarRadiusAxis = require("../polar/PolarRadiusAxis");
|
||||
var _PolarUtils = require("../util/PolarUtils");
|
||||
/**
|
||||
* @fileOverview Radar Chart
|
||||
*/
|
||||
|
||||
var RadarChart = exports.RadarChart = (0, _generateCategoricalChart.generateCategoricalChart)({
|
||||
chartName: 'RadarChart',
|
||||
GraphicalChild: _Radar.Radar,
|
||||
axisComponents: [{
|
||||
axisType: 'angleAxis',
|
||||
AxisComp: _PolarAngleAxis.PolarAngleAxis
|
||||
}, {
|
||||
axisType: 'radiusAxis',
|
||||
AxisComp: _PolarRadiusAxis.PolarRadiusAxis
|
||||
}],
|
||||
formatAxisMap: _PolarUtils.formatAxisMap,
|
||||
defaultProps: {
|
||||
layout: 'centric',
|
||||
startAngle: 90,
|
||||
endAngle: -270,
|
||||
cx: '50%',
|
||||
cy: '50%',
|
||||
innerRadius: 0,
|
||||
outerRadius: '80%'
|
||||
}
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue