@antv/g2plot
Version:
An interactive and responsive charting library
18 lines • 488 B
JavaScript
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