source: node_modules/recharts/es6/polar/defaultPolarAngleAxisProps.js

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

Added visualizations

  • Property mode set to 100644
File size: 577 bytes
Line 
1import { DefaultZIndexes } from '../zIndex/DefaultZIndexes';
2export var defaultPolarAngleAxisProps = {
3 allowDecimals: false,
4 allowDuplicatedCategory: true,
5 // if I set this to false then Tooltip synchronisation stops working in Radar, wtf
6 allowDataOverflow: false,
7 angle: 0,
8 angleAxisId: 0,
9 axisLine: true,
10 axisLineType: 'polygon',
11 cx: 0,
12 cy: 0,
13 hide: false,
14 includeHidden: false,
15 label: false,
16 orientation: 'outer',
17 reversed: false,
18 scale: 'auto',
19 tick: true,
20 tickLine: true,
21 tickSize: 8,
22 type: 'auto',
23 zIndex: DefaultZIndexes.axis
24};
Note: See TracBrowser for help on using the repository browser.