Member Junction
    Preparing search index...

    Serializable reference to a saved cluster visualization.

    Persisted via UserInfoEngine user settings so the user can reload previous analyses.

    interface SavedClusterVisualization {
        Algorithm: ClusterAlgorithm;
        ClusterLabels?: ClusterLabel[];
        CreatedAt: string;
        EntityName: string;
        Id: string;
        Name: string;
        Params: Partial<ClusterConfig>;
        Result?: ClusterVisualizationResult;
        Viewport?: ViewportTransform;
    }
    Index

    Properties

    Algorithm: ClusterAlgorithm

    Algorithm used.

    ClusterLabels?: ClusterLabel[]

    LLM-generated (or user-edited) labels for each cluster.

    CreatedAt: string

    ISO 8601 timestamp of when this was saved.

    EntityName: string

    Entity that was clustered.

    Id: string

    Unique identifier (UUID).

    Name: string

    User-given display name.

    Params: Partial<ClusterConfig>

    Snapshot of the full config at save time.

    Cached clustering result (points, clusters, metrics) — avoids re-computation on restore.

    Viewport transform at save time (pan + zoom state).