source: node_modules/recharts/lib/polar/defaultPolarAngleAxisProps.js@ ba17441

Last change on this file since ba17441 was a762898, checked in by istevanoska <ilinastevanoska@…>, 6 months ago

Added visualizations

  • Property mode set to 100644
File size: 749 bytes
Line 
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.defaultPolarAngleAxisProps = void 0;
7var _DefaultZIndexes = require("../zIndex/DefaultZIndexes");
8var defaultPolarAngleAxisProps = exports.defaultPolarAngleAxisProps = {
9 allowDecimals: false,
10 allowDuplicatedCategory: true,
11 // if I set this to false then Tooltip synchronisation stops working in Radar, wtf
12 allowDataOverflow: false,
13 angle: 0,
14 angleAxisId: 0,
15 axisLine: true,
16 axisLineType: 'polygon',
17 cx: 0,
18 cy: 0,
19 hide: false,
20 includeHidden: false,
21 label: false,
22 orientation: 'outer',
23 reversed: false,
24 scale: 'auto',
25 tick: true,
26 tickLine: true,
27 tickSize: 8,
28 type: 'auto',
29 zIndex: _DefaultZIndexes.DefaultZIndexes.axis
30};
Note: See TracBrowser for help on using the repository browser.