Interface IMarkmapOptions

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

Properties

autoFit: boolean
color: (node: INode) => string
duration: number
embedGlobalCSS: boolean
fitRatio: number
id?: string
initialExpandLevel: number
maxInitialScale: number
maxWidth: number
nodeMinHeight: number
paddingX: number
pan: boolean
scrollForPan: boolean
spacingHorizontal: number
spacingVertical: number
style?: (id: string) => string
toggleRecursively: boolean
zoom: boolean