| 123456789101112131415161718192021222324252627 |
- /**
- * 水波图默认配置项
- */
- export var 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
|