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