Interface INetworkViewerOptions

Represents an instance of the Mycelium viewer.

interface INetworkViewerOptions {
    autoResize: boolean;
    height: number;
    layoutProvider: ILayoutProvider;
    minimap: boolean;
    multiSelection: boolean;
    showBreadcrumbs: boolean;
    showResetView: boolean;
    watermark: boolean;
    width: number;
}

Properties

autoResize: boolean
height: number
layoutProvider: ILayoutProvider

Allows to customize the layout algorithm. This API is still experimental and might be subject to changes in the future.

Type Param: ILayoutProvider

minimap: boolean
multiSelection: boolean
showBreadcrumbs: boolean
showResetView: boolean
watermark: boolean
width: number