| 1234567891011 |
- import { DisplayObject } from '@antv/g';
- /**
- * Show tooltip for series item.
- */
- export declare function seriesTooltip(root: DisplayObject, { elements: elementsof, sort: sortFunction, filter: filterFunction, scale, coordinate, crosshairs, render, groupName, emitter, wait, leading, trailing, startX, startY, body, single, position, enterable, mount, bounding, style: _style, ...rest }: Record<string, any>): () => void;
- /**
- * Show tooltip for non-series item.
- */
- export declare function tooltip(root: DisplayObject, { elements: elementsof, scale, render, groupName, sort: sortFunction, filter: filterFunction, emitter, wait, leading, trailing, groupKey, // group elements by specified key
- single, position, enterable, datum, view, mount, bounding, }: Record<string, any>): () => void;
- export declare function Tooltip(options: any): (target: any, viewInstances: any, emitter: any) => () => void;
|