Interface IRangeCalculationHelper<T>
Defines a set of operations for calculation of visible range for axis that owns current instance of IRangeCalculationHelper
Implements
com.scichart.charting.visuals.axes.rangeCalculators.IRangeCalculationHelperBase<T>
Namespace:
Assembly: .dll
Syntax
public interface IRangeCalculationHelper<T> extends rangeCalculators.IRangeCalculationHelperBase<T>
Type Parameters
| Name | Description |
|---|---|
| T |
Methods
getWindowedYRange(Map<String,coordinateCalculators.ICoordinateCalculator> xCoordCalcs)
Returns the max range only for that axis (by the data-series on it), based on xRanges
"windowed" = "displayed in current viewport"
Note:uses GrowBy()
Declaration
public abstract IRange<T> getWindowedYRange(Map<String,coordinateCalculators.ICoordinateCalculator> xCoordCalcs)
Parameters
| Type | Name | Description |
|---|---|---|
| Map<String,ICoordinateCalculator> | xCoordCalcs | Calculates the max range based on corresponding x coordinate calculators |
Returns
| Type | Description |
|---|---|
| IRange<T> | The calculated windowed YRange |
Implements
com.scichart.charting.visuals.axes.rangeCalculators.IRangeCalculationHelperBase<T>