UNPKG

@uwdata/mosaic-plot

Version:

A Mosaic-powered plotting framework based on Observable Plot.

33 lines 854 B
/** * @import {Activatable} from '@uwdata/mosaic-core' * @implements {Activatable} */ export class Interval2D implements Activatable { constructor(mark: any, { selection, xfield, yfield, pixelSize, peers, brush: style }: { selection: any; xfield: any; yfield: any; pixelSize?: number; peers?: boolean; brush: any; }); mark: any; pixelSize: number; selection: any; peers: boolean; xfield: any; yfield: any; style: {}; brush: any; reset(): void; value: any[][]; activate(): void; publish(extent: any): void; clause(value: any): import("@uwdata/mosaic-core").SelectionClause; init(svg: any): void; xscale: any; yscale: any; g: any; } import type { Activatable } from '@uwdata/mosaic-core'; //# sourceMappingURL=Interval2D.d.ts.map