Interface DataStatsPanelParams

interface DataStatsPanelParams {
    container?: HTMLElement;
    data: Data;
    storageKey?: string;
    visible?: boolean;
}

Properties

container?: HTMLElement

DOM container; defaults to document.body.

data: Data

The Data graph to surface statistics for.

storageKey?: string

localStorage key for persisting drag position + closed state. Defaults to "xkt-dts-panel". Provide a unique key per Data instance if you want per-data layout memory.

visible?: boolean

Show on construction (default true).