commentMargin property

num get commentMargin

Gets or sets the space to leave between the node and the comments.

The default value is 20.

Negative values may cause comments to overlap with the node. This inherited property is initialized in the TreeLayout#initializeTreeVertexValues pass.

Implementation

_i2.num get commentMargin => _i4.getProperty(
      this,
      'commentMargin',
    );
set commentMargin (num value)

Implementation

set commentMargin(_i2.num value) {
  _i4.setProperty(
    this,
    'commentMargin',
    value,
  );
}