| 12345678910111213141516171819 |
- import { Plot } from '../../core/plot';
- import { deepAssign } from '../../utils';
- /**
- * 玉珏图 默认配置项
- */
- export var DEFAULT_OPTIONS = deepAssign({}, Plot.getDefaultOptions(), {
- interactions: [{ type: 'element-active' }],
- legend: false,
- tooltip: {
- showMarkers: false,
- },
- xAxis: {
- grid: null,
- tickLine: null,
- line: null,
- },
- maxAngle: 240,
- });
- //# sourceMappingURL=constant.js.map
|