constants.js 515 B

123456789101112131415161718192021222324252627
  1. /**
  2. * 水波图默认配置项
  3. */
  4. export var DEFAULT_OPTIONS = {
  5. radius: 0.9,
  6. statistic: {
  7. title: false,
  8. content: {
  9. style: {
  10. opacity: 0.75,
  11. fontSize: '30px',
  12. lineHeight: '30px',
  13. textAlign: 'center',
  14. },
  15. },
  16. },
  17. outline: {
  18. border: 2,
  19. distance: 0,
  20. },
  21. wave: {
  22. count: 3,
  23. length: 192,
  24. },
  25. shape: 'circle',
  26. };
  27. //# sourceMappingURL=constants.js.map