IPlot |
public interface IPlotRange
The IPlotRange type exposes the following members.
Name | Description | |
---|---|---|
Length | Number of points in this plot range. | |
LowerBound | First index of a contiguous plot range in the plot point array (i.e. in the array of processed plot point data, not in the original data column). To calculate from which row index in the original data column this comes from, use GetOriginalRowIndexFromPlotPointIndex(Int32). | |
OriginalFirstPoint | Row index of the first point of this plot range in the original data column. | |
OriginalLastPoint | Row index of the last point of this plot range in the original data column. | |
UpperBound | Last index + 1 of a contiguous plot range in the plot point array (i.e. in the array of processed plot point data, not in the original data column). To calculate from which row index in the original data column this comes from, use GetOriginalRowIndexFromPlotPointIndex(Int32). |
Name | Description | |
---|---|---|
GetOriginalRowIndexFromPlotPointIndex | Returns the row index in the original data column in dependence on the plot point index. Thus, if the argument is set to LowerBound, the return value is OriginalFirstPoint. | |
WithUpperBoundExtendedBy | Extends the upper boundary by the number of points provided in the parameter. | |
WithUpperBoundShortenedBy | Shortens the upper boundary by the number of points provided in the parameter. |