horizontalNegativeErrorValue property

double? horizontalNegativeErrorValue

Implementation

double? get horizontalNegativeErrorValue => _horizontalNegativeErrorValue;
void horizontalNegativeErrorValue=(double? value)

Implementation

set horizontalNegativeErrorValue(double? value) {
  if (_horizontalNegativeErrorValue != value) {
    _horizontalNegativeErrorValue = value;
    _updateErrorBarValues();
    forceTransformValues = true;
    markNeedsLayout();
  }
}