@antv/g2plot
Version:
An interactive and responsive charting library
21 lines • 478 B
JavaScript
import { Plot } from '../../core/plot';
import { deepAssign } from '../../utils';
/**
* 折线图默认配置项
*/
export var DEFAULT_OPTIONS = deepAssign({}, Plot.getDefaultOptions(), {
tooltip: {
shared: true,
showMarkers: true,
showCrosshairs: true,
crosshairs: {
type: 'x',
},
},
legend: {
position: 'top-left',
radio: {},
},
isStack: false,
});
//# sourceMappingURL=constants.js.map