horizontalPositiveErrorValue property

double? horizontalPositiveErrorValue

Implementation

double? get horizontalPositiveErrorValue => _horizontalPositiveErrorValue;
void horizontalPositiveErrorValue=(double? value)

Implementation

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