Member Junction
    Preparing search index...

    Configuration for the Cluster view type (the entity-viewer plug-in), persisted per UserView in DisplayState.viewTypeConfigs keyed by the Cluster MJ: View Types row ID.

    This is the plug-in-owned config shape referenced opaquely by the host as Record<string, unknown>; the Cluster renderer + prop-sheet interpret it with this type.

    interface ClusterViewConfig {
        algorithm: ClusterAlgorithm;
        colorBy: "cluster" | "entity";
        dimensions: 2 | 3;
        k: number;
        maxRecords: number;
        nameClusters: boolean;
    }
    Index

    Properties

    algorithm: ClusterAlgorithm

    Clustering algorithm.

    colorBy: "cluster" | "entity"

    Legend mode: color by assigned cluster (default) or by source entity.

    dimensions: 2 | 3

    Projected layout dimensionality: 2 (SVG) or 3 (rotatable).

    k: number

    Number of clusters for K-Means (ignored for DBSCAN).

    maxRecords: number

    Maximum records to fetch for clustering.

    nameClusters: boolean

    Whether to name clusters with an LLM (server-side).