isSubGraphExpanded property

bool get isSubGraphExpanded

Gets or sets whether the subgraph contained by this group is expanded. Changing this property's value will call #collapseSubGraph or #expandSubGraph, and also will call the value of #subGraphExpandedChanged if it is a function.

The initial value is true -- this group's member parts are shown.

There is an analogous property for expanded/collapsed trees of Nodes and Links: Node#isTreeExpanded.

Implementation

_i2.bool get isSubGraphExpanded => _i4.getProperty(
      this,
      'isSubGraphExpanded',
    );
set isSubGraphExpanded (bool value)

Implementation

set isSubGraphExpanded(_i2.bool value) {
  _i4.setProperty(
    this,
    'isSubGraphExpanded',
    value,
  );
}