initializeOption property

EnumValue initializeOption

Gets or sets which indices initialization option is being used. The value must be one of the following values: LayeredDigraphLayout.InitDepthFirstOut, LayeredDigraphLayout.InitDepthFirstIn, or LayeredDigraphLayout.InitNaive. The default value is LayeredDigraphLayout.InitDepthFirstOut.

Implementation

_i3.EnumValue get initializeOption => _i4.getProperty(
      this,
      'initializeOption',
    );
void initializeOption=(EnumValue value)

Implementation

set initializeOption(_i3.EnumValue value) {
  _i4.setProperty(
    this,
    'initializeOption',
    value,
  );
}