@antv/g2plot
Version:
An interactive and responsive charting library
19 lines • 459 B
JavaScript
import { Plot } from '../../core/plot';
import { deepAssign } from '../../utils';
/**
* 条形图默认配置项
*/
export var DEFAULT_OPTIONS = deepAssign({}, Plot.getDefaultOptions(), {
barWidthRatio: 0.6,
marginRatio: 1 / 32,
tooltip: {
shared: true,
showMarkers: false,
offset: 20,
},
legend: {
radio: {},
},
interactions: [{ type: 'active-region' }],
});
//# sourceMappingURL=constants.js.map