UNPKG

@visactor/vchart

Version:

charts lib based @visactor/VGrammar

14 lines (13 loc) 399 B
import type { Datum } from '../../typings'; export interface ILinkDotInfoOpt { infoKey: string; fields: () => { fromField: string; toField: string; xField: string | string[]; yField: string | string[]; }; linkData: () => Datum[]; dotData: () => Datum[]; } export declare const linkDotInfo: (data: Array<DataView>, op: ILinkDotInfoOpt) => Datum[];