constants.js 623 B

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