TChartErrorBars.CalcErrorValues Method
This method will calculate the Values array based on the error types and series values.
Syntax
Unit: FlexCel.Core
procedure TChartErrorBars.CalcErrorValues(const NumberOfSeries: Integer; const SeriesLen: Integer; const SeriesVal: TFunc<Integer, Integer, Double>; const SeriesHasVal: TFunc<Integer, Integer, Boolean>; const SeriesPos: Integer);
Parameters
<-> |
Parameter |
Type |
Description |
const |
NumberOfSeries |
Integer |
Total number of series. |
const |
SeriesLen |
Integer |
Length of one series. |
const |
SeriesVal |
TFunc<Integer, Integer, Double> |
Function that returns the value of a point of one of the series. First parameter is the series number, second is the point position. |
const |
SeriesHasVal |
TFunc<Integer, Integer, Boolean> |
Function that returns true if a point of the series exists. First parameter is the series number, second is the point position. |
const |
SeriesPos |
Integer |
Series for which we are calculating the values. |
See also