constant.js 576 B

12345678910111213141516171819202122
  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. interactions: [{ type: 'element-active' }],
  11. legend: false,
  12. tooltip: {
  13. showMarkers: false,
  14. },
  15. xAxis: {
  16. grid: null,
  17. tickLine: null,
  18. line: null,
  19. },
  20. maxAngle: 240,
  21. });
  22. //# sourceMappingURL=constant.js.map