41945e6434c9cdaf96c8f0773b2f0b2618a98ef3fc66c7d4dea103dc7305258e49e7374589229b9bfa9084597d57308dde20bc59e7c4368159e47b1e56d43f 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.gridConfig = void 0;
  6. var gridConfig = {
  7. /**
  8. * @description Grid left margin
  9. * @type {String|Number}
  10. * @default left = '10%'
  11. * @example left = '10%' | 10
  12. */
  13. left: '10%',
  14. /**
  15. * @description Grid right margin
  16. * @type {String|Number}
  17. * @default right = '10%'
  18. * @example right = '10%' | 10
  19. */
  20. right: '10%',
  21. /**
  22. * @description Grid top margin
  23. * @type {String|Number}
  24. * @default top = 60
  25. * @example top = '10%' | 60
  26. */
  27. top: 60,
  28. /**
  29. * @description Grid bottom margin
  30. * @type {String|Number}
  31. * @default bottom = 60
  32. * @example bottom = '10%' | 60
  33. */
  34. bottom: 60,
  35. /**
  36. * @description Grid default style configuration
  37. * @type {Object}
  38. * @default style = {Configuration Of Class Style}
  39. */
  40. style: {
  41. fill: 'rgba(0, 0, 0, 0)'
  42. },
  43. /**
  44. * @description Grid render level
  45. * Priority rendering high level
  46. * @type {Number}
  47. * @default rLevel = -30
  48. */
  49. rLevel: -30,
  50. /**
  51. * @description Grid animation curve
  52. * @type {String}
  53. * @default animationCurve = 'easeOutCubic'
  54. */
  55. animationCurve: 'easeOutCubic',
  56. /**
  57. * @description Grid animation frame
  58. * @type {Number}
  59. * @default animationFrame = 50
  60. */
  61. animationFrame: 30
  62. };
  63. exports.gridConfig = gridConfig;