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 Details

    • setMinAdjustedDisplayedRange

      IAutoAdjustmentPropertyOwner setMinAdjustedDisplayedRange(double minAdjustedDisplayedRange)
      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

      IAutoAdjustmentPropertyOwner setZeroInDisplayedRange(boolean showZero)
      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

      IAutoAdjustmentPropertyOwner setDisplayedRangeMinValueAutoAdjustmentEnabled(boolean enabled)
      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

      IAutoAdjustmentPropertyOwner setDisplayedRangeMaxValueAutoAdjustmentEnabled(boolean enabled)
      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:
      true if zero is always exists in the displayed range, false otherwise
    • isDisplayedRangeMinValueAutoAdjustmentEnabled

      boolean isDisplayedRangeMinValueAutoAdjustmentEnabled()
      Checks whether the minimum value is equal to the minimum value of the currently displayed contents.
      Returns:
      true if the minimum value is equal to the minimum value of the currently displayed contents, false otherwise
    • isDisplayedRangeMaxValueAutoAdjustmentEnabled

      boolean isDisplayedRangeMaxValueAutoAdjustmentEnabled()
      Checks whether the maximum value is equal to the maximum value of the currently displayed contents.
      Returns:
      true if the maximum value is equal to the maximum value of the currently displayed contents, false otherwise