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 TypeMethodDescriptionbooleanChecks whether the scrollbar is currently displayed.booleanChecks 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
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:
trueif the scrollbar should be drawn if scrolling the displayed rang of Y-axis is possible,falseotherwise
-
isScrollBarDisplayed
boolean isScrollBarDisplayed()Checks whether the scrollbar is currently displayed.- Returns:
trueif the scrollbar is currently displayed,falseotherwise
-