Package io.keikai.model
Interface SErrorBar
- All Known Implementing Classes:
ErrorBarImpl
public interface SErrorBar
Represents error bars on a chart series.
Reference: ECMA-376 5th Edition, sect. 21.2.2.55 (errBars).
- Since:
- 7.0.0
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic enumWhich side(s) the error bar extends.static enumThe axis direction of the error bar.static enumHow the error value is calculated. -
Method Summary
Modifier and TypeMethodDescriptionReturns the bar type (PLUS, MINUS, or BOTH).Returns the formula reference for custom minus error values, ornullif not using custom values.Returns the formula reference for custom plus error values, ornullif not using custom values.Returns the direction (X or Y) of this error bar.doubleReturns the fixed value used whengetValueType()is FIXED or PERCENTAGE.Returns how the error value is calculated.voidsetFixedValue(double value) Sets the fixed value used when the value type is FIXED or PERCENTAGE.
-
Method Details
-
getDirection
SErrorBar.Direction getDirection()Returns the direction (X or Y) of this error bar. -
getBarType
SErrorBar.BarType getBarType()Returns the bar type (PLUS, MINUS, or BOTH). -
getValueType
SErrorBar.ValueType getValueType()Returns how the error value is calculated. -
getFixedValue
double getFixedValue()Returns the fixed value used whengetValueType()is FIXED or PERCENTAGE. -
setFixedValue
void setFixedValue(double value) Sets the fixed value used when the value type is FIXED or PERCENTAGE. -
getCustomPlusRef
String getCustomPlusRef()Returns the formula reference for custom plus error values, ornullif not using custom values. -
getCustomMinusRef
String getCustomMinusRef()Returns the formula reference for custom minus error values, ornullif not using custom values.
-