Interface DataTexturesPanelParams

interface DataTexturesPanelParams {
    container?: HTMLElement;
    dataTextures: DataTextures;
    storageKey?: string;
    visible?: boolean;
}

Properties

container?: HTMLElement

DOM container; defaults to document.body.

dataTextures: DataTextures

Snapshot of the renderer's GPU data textures to surface. Doubles as the WeakMap key for DataTexturesPanel.openFor idempotence — one panel per DataTextures instance.

storageKey?: string

localStorage key for persisting drag position + closed state. Defaults to "xkt-dtx-panel".

visible?: boolean

Show on construction (default true).