| 1234567891011121314151617181920212223 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.DEFAULT_OPTIONS = void 0;
- var tslib_1 = require("tslib");
- var constants_1 = require("../tiny-line/constants");
- /**
- * 默认配置项
- */
- exports.DEFAULT_OPTIONS = {
- appendPadding: 2,
- tooltip: tslib_1.__assign({}, constants_1.DEFAULT_TOOLTIP_OPTIONS),
- // 默认样式
- color: 'l(90) 0:#E5EDFE 1:#ffffff',
- areaStyle: {
- fillOpacity: 0.6,
- },
- line: {
- size: 1,
- color: '#5B8FF9',
- },
- animation: {},
- };
- //# sourceMappingURL=constants.js.map
|