图形准备好/呈现时如何隐藏cytoscape节点?

hrirmatl  于 2021-09-13  发布在  Java
关注(0)|答案(0)|浏览(345)

我想在图形渲染时隐藏父对象的所有后续对象,并在点击时显示。但我的代码在开头显示节点,在点击父节点时隐藏/显示(从这里发布的另一个问题中获得)。

var parentArray = ["2", "6", "8", "9"];

for(var i=0; i < parentArray.length; ++i) {
    cy.on('tap', '[id = \"' + parentArray[i] + '\"]' , function() {
        if (this.scratch().restData == null) {
            this.scratch({
                restData: this.successors().targets().remove()
            });                    
        } else {
            this.scratch().restData.restore();
            this.scratch({
                estData: null
            });
        }
    });
}

我如何在开始时隐藏所有继任者?

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题