Click or drag to resize

PlotRange(Int32, Int32, Int32) Constructor

Initializes a new instance of the PlotRange class.

Namespace: Altaxo.Graph.Plot.Data
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public PlotRange(
	int lower,
	int upper,
	int offset
)

Parameters

lower  Int32
The lower index of the range. This index designates a location in the plot point array. It is not a row index of the original data!
upper  Int32
The upper index (one more than the last used) of the plot range. This index designates a location in the plot point array. It is not a row index of the original data!
offset  Int32
The offset to the data row index. Example: if lower is 10, and offset is 5, then the plot point at lower was created from the original row 15.
See Also