Interface IsLinearAxis
-
- All Superinterfaces:
IsNumericAxis
- All Known Implementing Classes:
CartesianLinearAxis,ColorAxis,RadialAxis,SizeAxis
public interface IsLinearAxis extends IsNumericAxis
Common methods for numeric scales (linear/log cartesian and radial).- Author:
- Andrea "Stock" Stocchero
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default booleanisBeginAtZero()If true, scale will include 0 if it is not already included.default voidsetBeginAtZero(boolean beginAtZero)If true, scale will include 0 if it is not already included.-
Methods inherited from interface org.pepstock.charba.client.configuration.IsNumericAxis
getAxisElement, getMax, getMin, getSuggestedMax, getSuggestedMin, setMax, setMin, setSuggestedMax, setSuggestedMin
-
-
-
-
Method Detail
-
setBeginAtZero
default void setBeginAtZero(boolean beginAtZero)
If true, scale will include 0 if it is not already included.- Parameters:
beginAtZero- if true, scale will include 0 if it is not already included.
-
isBeginAtZero
default boolean isBeginAtZero()
If true, scale will include 0 if it is not already included.- Returns:
- if true, scale will include 0 if it is not already included.
-
-