@uwdata/mosaic-plot
Version:
A Mosaic-powered plotting framework based on Observable Plot.
26 lines • 716 B
TypeScript
/**
* @import {Activatable} from '@uwdata/mosaic-core'
* @implements {Activatable}
*/
export class Nearest implements Activatable {
constructor(mark: any, { selection, pointer, channels, fields, maxRadius }: {
selection: any;
pointer: any;
channels: any;
fields: any;
maxRadius?: number;
});
mark: any;
selection: any;
clients: Set<any>;
pointer: any;
channels: any;
fields: any;
maxRadius: number;
valueIndex: number;
clause(value: any): import("@uwdata/mosaic-core").SelectionClause;
init(svg: any): void;
activate(): void;
}
import type { Activatable } from '@uwdata/mosaic-core';
//# sourceMappingURL=Nearest.d.ts.map