horizontalErrorValue property

double? horizontalErrorValue

Implementation

double? get horizontalErrorValue => _horizontalErrorValue;
void horizontalErrorValue=(double? value)

Implementation

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