| 12345678910111213141516171819202122232425262728 |
- import { Plot } from '../../core/plot';
- import { deepAssign } from '../../utils';
- /**
- * 玫瑰图 默认配置项
- */
- export var DEFAULT_OPTIONS = deepAssign({}, Plot.getDefaultOptions(), {
- xAxis: false,
- yAxis: false,
- legend: {
- position: 'right',
- radio: {},
- },
- sectorStyle: {
- stroke: '#fff',
- lineWidth: 1,
- },
- label: {
- layout: {
- type: 'limit-in-shape',
- },
- },
- tooltip: {
- shared: true,
- showMarkers: false,
- },
- interactions: [{ type: 'active-region' }],
- });
- //# sourceMappingURL=constant.js.map
|