| 123456789101112131415161718 |
- import { registerAction, registerInteraction } from '@antv/g2';
- import { MarkerActiveAction } from './marker-active';
- registerAction('marker-active', MarkerActiveAction);
- registerInteraction('marker-active', {
- start: [
- {
- trigger: 'tooltip:show',
- action: 'marker-active:active',
- },
- ],
- end: [
- {
- trigger: 'tooltip:hide',
- action: 'marker-active:reset',
- },
- ],
- });
- //# sourceMappingURL=index.js.map
|