TChartErrorBars.Create Constructor
Creates a new TChartErrorBars instance.
Syntax
Unit: FlexCel.Core
constructor TChartErrorBars.Create(const aDirection: TChartErrorBarDirection; const aBarType: TChartErrorBarBarType; const aErrorType: TChartErrorBarErrorType; const aIsTShaped: Boolean; const aNumValue: Double; aLineOptions: IChartLineOptions; const aCustomDefPlus: string; const aCustomValuesPlus: TArray<TCellValue>; const aCustomDefMinus: string; const aCustomValuesMinus: TArray<TCellValue>);
Parameters
<-> |
Parameter |
Type |
Description |
const |
aDirection |
TChartErrorBarDirection |
Direction of the error bars. |
const |
aBarType |
TChartErrorBarBarType |
Positive or negative error bars. |
const |
aErrorType |
TChartErrorBarErrorType |
Type of error bar. |
const |
aIsTShaped |
Boolean |
If true, the error bar has a top line like a T. |
const |
aNumValue |
Double |
Numeric value of the error. The meaning of this depends in the ErrorType. |
|
aLineOptions |
IChartLineOptions |
Line options for the error bars, color, line width, etc. If null, standard options will be used. |
const |
aCustomDefPlus |
string |
Definition for the custom error bars in the plus direction. If the error is not custom this will be null. |
const |
aCustomValuesPlus |
TArray<TCellValue> |
Values for the custom error bars in the plus direction. If the error is not custom this will be null. |
const |
aCustomDefMinus |
string |
Definition for the custom error bars in the minus direction. If the error is not custom this will be null. |
const |
aCustomValuesMinus |
TArray<TCellValue> |
Values for the custom error bars in the minus direction. If the error is not custom this will be null. |
See also