constants.js 459 B

12345678910111213141516171819
  1. import { Plot } from '../../core/plot';
  2. import { deepAssign } from '../../utils';
  3. /**
  4. * 条形图默认配置项
  5. */
  6. export var DEFAULT_OPTIONS = deepAssign({}, Plot.getDefaultOptions(), {
  7. barWidthRatio: 0.6,
  8. marginRatio: 1 / 32,
  9. tooltip: {
  10. shared: true,
  11. showMarkers: false,
  12. offset: 20,
  13. },
  14. legend: {
  15. radio: {},
  16. },
  17. interactions: [{ type: 'active-region' }],
  18. });
  19. //# sourceMappingURL=constants.js.map