Package org.meteoinfo.chart.axis
Class AxisProperty
- java.lang.Object
-
- org.meteoinfo.chart.axis.AxisProperty
-
public class AxisProperty extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description AxisProperty()ConstructorAxisProperty(boolean visible, boolean drawTick, boolean drawLabel)Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisDrawLabel()Get if draw labelbooleanisDrawTick()Get if draw tick linesbooleanisVisible()If is visiblevoidsetDrawLabel(boolean value)Set if draw labelvoidsetDrawTick(boolean value)Set if draw tick linesvoidsetVisible(boolean value)Set if is visible
-
-
-
Method Detail
-
isVisible
public boolean isVisible()
If is visible- Returns:
- Boolean
-
setVisible
public void setVisible(boolean value)
Set if is visible- Parameters:
value- Boolean
-
isDrawTick
public boolean isDrawTick()
Get if draw tick lines- Returns:
- Boolean
-
setDrawTick
public void setDrawTick(boolean value)
Set if draw tick lines- Parameters:
value- Boolean
-
isDrawLabel
public boolean isDrawLabel()
Get if draw label- Returns:
- Boolean
-
setDrawLabel
public void setDrawLabel(boolean value)
Set if draw label- Parameters:
value- Boolean
-
-