@uwdata/mosaic-plot
Version:
A Mosaic-powered plotting framework based on Observable Plot.
32 lines • 844 B
TypeScript
/**
* @import {Activatable} from '@uwdata/mosaic-core'
* @implements {Activatable}
*/
export class Interval1D implements Activatable {
constructor(mark: any, { channel, selection, field, pixelSize, peers, brush: style }: {
channel: any;
selection: any;
field?: any;
pixelSize?: number;
peers?: boolean;
brush: any;
});
mark: any;
channel: any;
pixelSize: number;
selection: any;
peers: boolean;
field: 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, root: any): void;
scale: any;
g: any;
}
import type { Activatable } from '@uwdata/mosaic-core';
//# sourceMappingURL=Interval1D.d.ts.map