Interface IMarkmapOptions

interface IMarkmapOptions {
    autoFit: boolean;
    color: ((node) => string);
    duration: number;
    embedGlobalCSS: boolean;
    fitRatio: number;
    id?: string;
    initialExpandLevel: number;
    maxWidth: number;
    nodeMinHeight: number;
    paddingX: number;
    pan: boolean;
    scrollForPan: boolean;
    spacingHorizontal: number;
    spacingVertical: number;
    style?: ((id) => string);
    toggleRecursively: boolean;
    zoom: boolean;
}

Properties

autoFit: boolean
color: ((node) => string)

Type declaration

    • (node): string
    • Parameters

      Returns string

duration: number
embedGlobalCSS: boolean
fitRatio: number
id?: string
initialExpandLevel: number
maxWidth: number
nodeMinHeight: number
paddingX: number
pan: boolean
scrollForPan: boolean
spacingHorizontal: number
spacingVertical: number
style?: ((id) => string)

Type declaration

    • (id): string
    • Parameters

      • id: string

      Returns string

toggleRecursively: boolean
zoom: boolean

Generated using TypeDoc