twoWay property

EnumValue get twoWay

This value for Binding#mode uses data source values and GraphObject properties and keeps them in sync. When Panel#updateTargetBindings is called, the GraphObject properties are set. When GraphObject properties are modified, the Panel#data properties are set.

Implementation

static _i3.EnumValue get twoWay => _i4.getProperty(
      _declaredBinding,
      'TwoWay',
    );
set twoWay (EnumValue value)

Implementation

static set twoWay(_i3.EnumValue value) {
  _i4.setProperty(
    _declaredBinding,
    'TwoWay',
    value,
  );
}