@uwdata/vgplot
Version:
An API for interactive Mosaic-powered visualizations and dashboards.
47 lines • 1.58 kB
TypeScript
export function highlight({ by, ...channels }: {
[x: string]: any;
by: any;
}): (plot: any) => void;
export function intervalX({ as, ...rest }: {
[x: string]: any;
as: any;
}): (plot: any) => void;
export function intervalY({ as, ...rest }: {
[x: string]: any;
as: any;
}): (plot: any) => void;
export function intervalXY({ as, ...rest }: {
[x: string]: any;
as: any;
}): (plot: any) => void;
export function nearest({ as, ...rest }: {
[x: string]: any;
as: any;
}): (plot: any) => void;
export function nearestX({ as, ...rest }: {
[x: string]: any;
as: any;
}): (plot: any) => void;
export function nearestY({ as, ...rest }: {
[x: string]: any;
as: any;
}): (plot: any) => void;
export function region({ as, ...rest }: {
[x: string]: any;
as: any;
}): (plot: any) => void;
export function toggle({ as, ...rest }: {
[x: string]: any;
as: any;
}): (plot: any) => void;
export function toggleX(options: any): (plot: any) => void;
export function toggleY(options: any): (plot: any) => void;
export function toggleZ(options: any): (plot: any) => void;
export function toggleColor(options: any): (plot: any) => void;
export function pan(options?: {}): (plot: any) => void;
export function panX(options?: {}): (plot: any) => void;
export function panY(options?: {}): (plot: any) => void;
export function panZoom(options?: {}): (plot: any) => void;
export function panZoomX(options?: {}): (plot: any) => void;
export function panZoomY(options?: {}): (plot: any) => void;
//# sourceMappingURL=interactors.d.ts.map