SeriesItem Property (Int32)

GF Charts Help
Returns the offset series

Namespace:  GF.Clients.Charts.TimeSeries
Assembly:  GF.Clients.Charts (in GF.Clients.Charts.dll) Version: a2f537322cdaf87d2796303449681c087e96766d
Syntax

public Series this[
	int Offset
] { get; }

Parameters

Offset
Type: SystemInt32

Return Value

Type: Series
Remarks

The latest value of offset series will be equal to the current + Offset values of the original series

So, this[1, SeriesOrder.Back] == this[1][0, SeriesOrder.Back]

And: this[1, SeriesOrder.Back] == this[1].Value, because Value refers to the latest value

And: this[1, SeriesOrder.Back] == this[1], because the cast operator to double returns Series.Value

See Also

Reference