constant.js 407 B

1234567891011121314151617
  1. import { Plot } from '../../core/plot';
  2. import { deepAssign } from '../../utils';
  3. /**
  4. * 散点图 默认配置项
  5. */
  6. export var DEFAULT_OPTIONS = deepAssign({}, Plot.getDefaultOptions(), {
  7. size: 4,
  8. tooltip: {
  9. showTitle: false,
  10. showMarkers: false,
  11. showCrosshairs: true,
  12. crosshairs: {
  13. type: 'xy',
  14. },
  15. },
  16. });
  17. //# sourceMappingURL=constant.js.map