Interface IRangeCalculationHelperBase<T>
Implements
Namespace:
Assembly: .dll
Syntax
public interface IRangeCalculationHelperBase<T> extends IAttachable
Type Parameters
| Name | Description |
|---|---|
| T |
Methods
getDataRange(boolean forceCacheUpdate)
Gets data range(full extents of the data) of the Axis
Declaration
public abstract IRange<T> getDataRange(boolean forceCacheUpdate)
Parameters
| Type | Name | Description |
|---|---|---|
| boolean | forceCacheUpdate | if true forces full recalculation of data range even if data hasn't changed |
Returns
| Type | Description |
|---|---|
| IRange<T> | data range of axis |
getMaximumRange(boolean forceCacheUpdate)
Gets the maximum range of the axis, based on the data-range of all series
Declaration
public abstract IRange<T> getMaximumRange(boolean forceCacheUpdate)
Parameters
| Type | Name | Description |
|---|---|---|
| boolean | forceCacheUpdate | if true forces full recalculation of maximum range even if data hasn't changed |
Returns
| Type | Description |
|---|---|
| IRange<T> | maximum range of axis |
onDataRangeChanged()
Called internally when data range changes
Declaration
public abstract void onDataRangeChanged()