"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(), { type: 'polygon', legend: false, coordinate: { type: 'rect', }, xAxis: { tickLine: null, line: null, grid: { alignTick: false, line: { style: { lineWidth: 1, lineDash: null, stroke: '#f0f0f0', }, }, }, }, yAxis: { grid: { alignTick: false, line: { style: { lineWidth: 1, lineDash: null, stroke: '#f0f0f0', }, }, }, }, }); //# sourceMappingURL=constant.js.map