How to use the @hpcc-js/api.ITree.call function in @hpcc-js/api

To help you get started, we’ve selected a few @hpcc-js/api examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github hpcc-systems / Visualization / packages / tree / src / Treemap.ts View on Github external
constructor() {
        super();
        ITree.call(this);
        Utility.SimpleSelectionMixin.call(this);
    }
github hpcc-systems / Visualization / packages / tree / src / Indented.ts View on Github external
constructor() {
        super();
        ITree.call(this);
        Utility.SimpleSelectionMixin.call(this);

        this._drawStartPos = "origin";

        this._d3Tree = d3Tree();
    }
github hpcc-systems / Visualization / packages / tree / src / Dendrogram.ts View on Github external
constructor() {
        super();
        ITree.call(this);
        Utility.SimpleSelectionMixin.call(this);

        this._drawStartPos = "origin";

        this._d3LayoutCluster = d3Cluster();
        this._d3LayoutTree = d3Tree();
    }