Interface IScrollBarPropertyOwner

All Known Implementing Classes:
BarChartCategoryXAxis, GanttChartCategoryYAxis, GanttChartNumericXAxis, GanttChartTimeXAxis, HeatmapChartXAxis, HeatmapChartYAxis, LineChartNumericXAxis, LineChartTimeXAxis

public interface IScrollBarPropertyOwner
Interface of scroll bar property owners. Provides a set of methods corresponding to it.
Author:
Aleksey Kirillov
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Checks whether the scrollbar is currently displayed.
    boolean
    Checks whether the scrollbar should be drawn if scrolling the displayed rang of Y-axis is possible.
    setScrollBarVisible(boolean visible)
    Specifies whether the scrollbar should be drawn if scrolling the displayed rang of axis is possible.
  • Method Details

    • setScrollBarVisible

      IScrollBarPropertyOwner setScrollBarVisible(boolean visible)
      Specifies whether the scrollbar should be drawn if scrolling the displayed rang of axis is possible. True by default. If set to false, the scrollbar will never be drawn but the functionality of scrolling this axis will still remain. Redraws this axis and it's parent chart if visibility is changed.
      Parameters:
      visible - flag setting if the scrollbar should be drawn if scrolling the displayed rang of axis is possible
      Returns:
      reference to this object
      See Also:
    • isScrollBarVisible

      boolean isScrollBarVisible()
      Checks whether the scrollbar should be drawn if scrolling the displayed rang of Y-axis is possible.
      Returns:
      true if the scrollbar should be drawn if scrolling the displayed rang of Y-axis is possible, false otherwise
    • isScrollBarDisplayed

      boolean isScrollBarDisplayed()
      Checks whether the scrollbar is currently displayed.
      Returns:
      true if the scrollbar is currently displayed, false otherwise