| 12345678910111213141516171819 |
- import { Plot } from '../../core/plot';
- import { deepAssign } from '../../utils';
- /**
- * 条形图默认配置项
- */
- export var DEFAULT_OPTIONS = deepAssign({}, Plot.getDefaultOptions(), {
- barWidthRatio: 0.6,
- marginRatio: 1 / 32,
- tooltip: {
- shared: true,
- showMarkers: false,
- offset: 20,
- },
- legend: {
- radio: {},
- },
- interactions: [{ type: 'active-region' }],
- });
- //# sourceMappingURL=constants.js.map
|