@antv/g2plot
Version:
An interactive and responsive charting library
31 lines • 730 B
JavaScript
"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 = utils_1.deepAssign({}, plot_1.Plot.getDefaultOptions(), {
xAxis: false,
yAxis: false,
legend: {
position: 'right',
radio: {},
},
sectorStyle: {
stroke: '#fff',
lineWidth: 1,
},
label: {
layout: {
type: 'limit-in-shape',
},
},
tooltip: {
shared: true,
showMarkers: false,
},
interactions: [{ type: 'active-region' }],
});
//# sourceMappingURL=constant.js.map