/// <summary> /// Expands the whole diagram /// </summary> public void ExpandAll() { IVisitor expander = new ExpanderVisitor(); this.graphAbstract.DepthFirstTraversal(expander); DrawTree(); }