public interface IErrorBarsFormat extends IChartComponent
Represents error bars of chart series. ErrorBars custom values are in IChartDataPointCollection
(in IChartDataPoint.getErrorBarsCustomValues()
property).
Modifier and Type | Method and Description |
---|---|
IFormat |
getFormat()
Represents the format of the error bars.
|
int |
getType()
Gets or sets type of error bars.
|
float |
getValue()
Gets or sets value which is used with Fixed, Percentage and StandardDeviation value types to determine the length of the error bars.
|
int |
getValueType()
Represents possible ways to determine the length of the error bars.
|
boolean |
hasEndCap()
Specifies an end cap is not drawn on the error bars.
|
boolean |
isVisible()
Gets or sets Error Bars visibility.
|
void |
setEndCap(boolean value)
Specifies an end cap is not drawn on the error bars.
|
void |
setFormat(IFormat value)
Represents the format of the error bars.
|
void |
setType(int value)
Gets or sets type of error bars.
|
void |
setValue(float value)
Gets or sets value which is used with Fixed, Percentage and StandardDeviation value types to determine the length of the error bars.
|
void |
setValueType(int value)
Represents possible ways to determine the length of the error bars.
|
void |
setVisible(boolean value)
Gets or sets Error Bars visibility.
|
getChart
getSlide
getPresentation
int getType()
Gets or sets type of error bars.
Read/write ErrorBarType
.
void setType(int value)
Gets or sets type of error bars.
Read/write ErrorBarType
.
int getValueType()
Represents possible ways to determine the length of the error bars.
In case of custom value type to specify value use IChartDataPoint.getErrorBarsCustomValues()
property of specific data point in DataPoints collection of series.
Read/write ErrorBarValueType
.
void setValueType(int value)
Represents possible ways to determine the length of the error bars.
In case of custom value type to specify value use IChartDataPoint.getErrorBarsCustomValues()
property of specific data point in DataPoints collection of series.
Read/write ErrorBarValueType
.
boolean hasEndCap()
Specifies an end cap is not drawn on the error bars.
Read/write boolean
.
void setEndCap(boolean value)
Specifies an end cap is not drawn on the error bars.
Read/write boolean
.
float getValue()
Gets or sets value which is used with Fixed, Percentage and StandardDeviation value types to determine the length of the error bars.
Read/write float
.
void setValue(float value)
Gets or sets value which is used with Fixed, Percentage and StandardDeviation value types to determine the length of the error bars.
Read/write float
.
void setFormat(IFormat value)
Represents the format of the error bars.
Read/write IFormat
.
boolean isVisible()
Gets or sets Error Bars visibility.
Read/write boolean
.
void setVisible(boolean value)
Gets or sets Error Bars visibility.
Read/write boolean
.