| 12345678910111213141516171819202122 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.DEFAULT_OPTIONS = void 0;
- var plot_1 = require("../../core/plot");
- var utils_1 = require("../../utils");
- /**
- * 玉珏图 默认配置项
- */
- exports.DEFAULT_OPTIONS = (0, utils_1.deepAssign)({}, plot_1.Plot.getDefaultOptions(), {
- interactions: [{ type: 'element-active' }],
- legend: false,
- tooltip: {
- showMarkers: false,
- },
- xAxis: {
- grid: null,
- tickLine: null,
- line: null,
- },
- maxAngle: 240,
- });
- //# sourceMappingURL=constant.js.map
|