constant.js 1016 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.DEFAULT_OPTIONS = void 0;
  4. var plot_1 = require("../../core/plot");
  5. var utils_1 = require("../../utils");
  6. /**
  7. * 色块图默认配置项
  8. */
  9. exports.DEFAULT_OPTIONS = (0, utils_1.deepAssign)({}, plot_1.Plot.getDefaultOptions(), {
  10. type: 'polygon',
  11. legend: false,
  12. coordinate: {
  13. type: 'rect',
  14. },
  15. xAxis: {
  16. tickLine: null,
  17. line: null,
  18. grid: {
  19. alignTick: false,
  20. line: {
  21. style: {
  22. lineWidth: 1,
  23. lineDash: null,
  24. stroke: '#f0f0f0',
  25. },
  26. },
  27. },
  28. },
  29. yAxis: {
  30. grid: {
  31. alignTick: false,
  32. line: {
  33. style: {
  34. lineWidth: 1,
  35. lineDash: null,
  36. stroke: '#f0f0f0',
  37. },
  38. },
  39. },
  40. },
  41. });
  42. //# sourceMappingURL=constant.js.map