| 123456789101112131415161718192021222324252627282930313233343536373839 |
- import { Plot } from '../../core/plot';
- import { deepAssign } from '../../utils';
- /**
- * 色块图默认配置项
- */
- export var DEFAULT_OPTIONS = deepAssign({}, Plot.getDefaultOptions(), {
- type: 'polygon',
- legend: false,
- coordinate: {
- type: 'rect',
- },
- xAxis: {
- tickLine: null,
- line: null,
- grid: {
- alignTick: false,
- line: {
- style: {
- lineWidth: 1,
- lineDash: null,
- stroke: '#f0f0f0',
- },
- },
- },
- },
- yAxis: {
- grid: {
- alignTick: false,
- line: {
- style: {
- lineWidth: 1,
- lineDash: null,
- stroke: '#f0f0f0',
- },
- },
- },
- },
- });
- //# sourceMappingURL=constant.js.map
|