comments property

bool comments

Gets or sets whether this layout should find all Nodes whose category is "Comment" and whose anchors are nodes represented in the network, and add ForceDirectedVertexes representing those balloon comments as nodes in the network. The default value is false.

Implementation

_i2.bool get comments => _i4.getProperty(
      this,
      'comments',
    );
void comments=(bool value)

Implementation

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