maxIterations property

num maxIterations

Gets or sets the maximum number of iterations to perform when doing the force-directed auto layout. The value must be non-negative. The default value is 100.

Implementation

_i2.num get maxIterations => _i4.getProperty(
      this,
      'maxIterations',
    );
void maxIterations=(num value)

Implementation

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