Updates azdataGraph version to 0.0.33 (#20028)

This commit is contained in:
Lewis Sanchez
2022-07-13 18:59:22 -07:00
committed by GitHub
parent 5888d3abd1
commit e5b0e0255c
7 changed files with 22 additions and 13 deletions

View File

@@ -38,7 +38,16 @@ export class AzdataGraphView {
) {
this._parentContainer.tabIndex = 0;
this._diagramModel = this.populate(this._executionPlan.root);
this._diagram = new azdataGraph.azdataQueryPlan(this._parentContainer, this._diagramModel, executionPlanNodeIconPaths, badgeIconPaths, collapseExpandNodeIconPaths);
let queryPlanConfiguration = {
container: this._parentContainer,
queryPlanGraph: this._diagramModel,
iconPaths: executionPlanNodeIconPaths,
badgeIconPaths: badgeIconPaths,
expandCollapsePaths: collapseExpandNodeIconPaths
};
this._diagram = new azdataGraph.azdataQueryPlan(queryPlanConfiguration);
this.setGraphProperties();
this.selectElement(this._executionPlan.root);
this._cellInFocus = this._diagram.graph.getSelectionCell();