@antv/g2plot
Version:
An interactive and responsive charting library
18 lines (16 loc) • 342 B
text/typescript
import { Plot } from '../../core/plot';
import { deepAssign } from '../../utils';
/**
* 散点图 默认配置项
*/
export const DEFAULT_OPTIONS = deepAssign({}, Plot.getDefaultOptions(), {
size: 4,
tooltip: {
showTitle: false,
showMarkers: false,
showCrosshairs: true,
crosshairs: {
type: 'xy',
},
},
});