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