| 123456789101112131415161718192021222324252627282930 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.DEFAULT_OPTIONS = void 0;
- /**
- * 水波图默认配置项
- */
- exports.DEFAULT_OPTIONS = {
- radius: 0.9,
- statistic: {
- title: false,
- content: {
- style: {
- opacity: 0.75,
- fontSize: '30px',
- lineHeight: '30px',
- textAlign: 'center',
- },
- },
- },
- outline: {
- border: 2,
- distance: 0,
- },
- wave: {
- count: 3,
- length: 192,
- },
- shape: 'circle',
- };
- //# sourceMappingURL=constants.js.map
|