| 1234567891011121314151617181920212223242526272829303132 |
- import { Plot } from '../../core/plot';
- import { deepAssign } from '../../utils';
- /**
- * 默认配置项
- */
- export var DEFAULT_OPTIONS = deepAssign({}, Plot.getDefaultOptions(), {
- layout: 'horizontal',
- size: {
- range: 30,
- measure: 20,
- target: 20,
- },
- xAxis: {
- tickLine: false,
- line: null,
- },
- bulletStyle: {
- range: {
- fillOpacity: 0.5,
- },
- },
- label: {
- measure: {
- position: 'right',
- },
- },
- tooltip: {
- // 默认关闭
- showMarkers: false,
- },
- });
- //# sourceMappingURL=constant.js.map
|