Table of Contents

TChartErrorBars.CalcErrorValues Method

This method will calculate the Values array based on the error types and series values.

Syntax

Namespace: FlexCel.Core

public void CalcErrorValues(Int32 NumberOfSeries, Int32 SeriesLen, Func<Int32, Int32, Double> SeriesVal, Func<Int32, Int32, Boolean> SeriesHasVal, Int32 SeriesPos)

Parameters

<-> Parameter Type Description
NumberOfSeries Int32 Total number of series.
SeriesLen Int32 Length of one series.
SeriesVal Func<Int32, Int32, 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.
SeriesHasVal Func<Int32, Int32, Boolean> Function that returns true if a point of the series exists. First parameter is the series number, second is the point position.
SeriesPos Int32 Series for which we are calculating the values.

See also