Interface IAutoAdjustmentPropertyOwner
- All Known Implementing Classes:
LineChartNumericYAxis
public interface IAutoAdjustmentPropertyOwner
Interface of auto adjustment property owners. Provides a set of methods
corresponding to it.
- Author:
- Aleksey Kirillov
-
Method Summary
Modifier and TypeMethodDescriptionbooleanChecks whether the maximum value is equal to the maximum value of the currently displayed contents.booleanChecks whether the minimum value is equal to the minimum value of the currently displayed contents.booleanChecks whether zero is always exists in the displayed range.setDisplayedRangeMaxValueAutoAdjustmentEnabled(boolean enabled) Specifies an axis mode in which the maximum axis value is equal to the maximum value of the currently displayed contents.setDisplayedRangeMinValueAutoAdjustmentEnabled(boolean enabled) Specifies an axis mode in which the minimum axis value is equal to the minimum value of the currently displayed contents.setMinAdjustedDisplayedRange(double minAdjustedDisplayedRange) Specifies minimum axis range of the currently displayed contents.setZeroInDisplayedRange(boolean showZero) Specifies an axis mode in which zero value is always exists in the displayed range.
-
Method Details
-
setMinAdjustedDisplayedRange
Specifies minimum axis range of the currently displayed contents. Redraws this chart if value is changed.- Parameters:
minAdjustedDisplayedRange- minimum axis range of the currently displayed contents- Returns:
- reference to this object
- See Also:
-
setZeroInDisplayedRange
Specifies an axis mode in which zero value is always exists in the displayed range. Redraws this chart if visibility is changed.- Parameters:
showZero- flag setting zero value will be always in the displayed range- Returns:
- reference to this object
- See Also:
-
setDisplayedRangeMinValueAutoAdjustmentEnabled
Specifies an axis mode in which the minimum axis value is equal to the minimum value of the currently displayed contents. Redraws this chart if value is changed.- Parameters:
enabled- flag setting the minimum axis value will be equal to the minimum value of the currently displayed contents- Returns:
- reference to this object
- See Also:
-
setDisplayedRangeMaxValueAutoAdjustmentEnabled
Specifies an axis mode in which the maximum axis value is equal to the maximum value of the currently displayed contents. Redraws this chart if value is changed.- Parameters:
enabled- flag setting the maximum axis value will be equal to the maximum value of the currently displayed contents- Returns:
- reference to this object
- See Also:
-
isZeroInDisplayedRange
boolean isZeroInDisplayedRange()Checks whether zero is always exists in the displayed range.- Returns:
trueif zero is always exists in the displayed range,falseotherwise
-
isDisplayedRangeMinValueAutoAdjustmentEnabled
boolean isDisplayedRangeMinValueAutoAdjustmentEnabled()Checks whether the minimum value is equal to the minimum value of the currently displayed contents.- Returns:
trueif the minimum value is equal to the minimum value of the currently displayed contents,falseotherwise
-
isDisplayedRangeMaxValueAutoAdjustmentEnabled
boolean isDisplayedRangeMaxValueAutoAdjustmentEnabled()Checks whether the maximum value is equal to the maximum value of the currently displayed contents.- Returns:
trueif the maximum value is equal to the maximum value of the currently displayed contents,falseotherwise
-