sorting property

EnumValue sorting

Gets or sets if and how the nodes are sorted.

CircularLayout.Forwards indicates that the nodes are arranged in the order the layout gets them. CircularLayout.Reverse indicates that the nodes are arranged in the reverse order that the layout gets them. CircularLayout.Ascending and CircularLayout.Descending indicate that the nodes will be sorted using the #comparer. CircularLayout.Optimized indicates that the nodes will be arranged to minimize link crossings.

The default value is CircularLayout.Optimized.

Implementation

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

Implementation

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