@antv/g2plot
Version:
An interactive and responsive charting library
26 lines • 631 B
JavaScript
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 = utils_1.deepAssign({}, plot_1.Plot.getDefaultOptions(), {
tooltip: {
shared: true,
showMarkers: true,
showCrosshairs: true,
crosshairs: {
type: 'x',
},
},
isStack: true,
// 默认开启
line: {},
legend: {
position: 'top-left',
radio: {},
},
});
//# sourceMappingURL=constants.js.map
;