prorm API Reference
    Preparing search index...

    Interface RelationalDiagramOptions

    interface RelationalDiagramOptions {
        entities: RelEntity[];
        relationships?: RelRelationship[];
        title?: string;
        theme?: "light" | "dark";
        color?: string;
        columns?: number;
    }
    Index
    entities: RelEntity[]
    relationships?: RelRelationship[]
    title?: string
    theme?: "light" | "dark"

    Accepted for backward compatibility and ignored: diagrams render in a single monochrome theme.

    color?: string

    Accepted for backward compatibility and ignored.

    columns?: number

    Number of entity columns in the layout grid.

    3