pointlinejs
    Preparing search index...

    Interface ChartInterface

    interface ChartInterface {
        actionsId: string;
        animateOnInit: boolean;
        animateOnInitDelay: number;
        animation: AnimationType;
        callback: Partial<CallbackFunction>;
        connectors: Partial<ConnectorType>;
        container: string;
        hideRootNode: boolean;
        levelSeparation: number;
        maxDepth: number;
        node: Partial<NodeType>;
        nodeAlign: NodeAlignType;
        padding: number;
        rootOrientation: RootOrientationType;
        scrollbar: ScrollbarType;
        siblingSeparation: number;
        subTeeSeparation: number;
    }
    Index

    Properties

    actionsId: string
    animateOnInit: boolean

    Every chart can be animated uppon initialization if this option is set to true. For more animation options see chart configanimation. (jQuery required)

    animateOnInitDelay: number

    This option indicates a number of miliseconds before an init animation is triggered.

    animation: AnimationType
    callback: Partial<CallbackFunction>

    Detailed usage and examples coming soon.

    connectors: Partial<ConnectorType>
    container: string

    A string that identifies a HTML element that will contain the organizational chart (nodes and connections). A string should be specified as a jQuery ID selector (ex: "#some-element-id")

    hideRootNode: boolean

    The root node can be hidden by defining this as true. Root node should still be defined in the chart structure but it won't be shown.

    levelSeparation: number

    The levelSeparation property defines the separation between chart levels.

    maxDepth: number
    node: Partial<NodeType>
    nodeAlign: NodeAlignType
    padding: number

    If the scrollbar is shown, this defines the padding between the chart structure and the chart container.

    rootOrientation: RootOrientationType
    scrollbar: ScrollbarType
    siblingSeparation: number

    The siblingSeparation property defines the separation between two sibling on the same level.

    subTeeSeparation: number

    The siblingSeparation property defines the separation between two neighbor branches of the organizational chart.