Package io.keikai.model
Interface SChartAxis
-
- All Known Implementing Classes:
AbstractChartAxisAdv,CategoryAxisImpl,ChartAxisImpl,DateAxisImpl,ValueAxisImpl
public interface SChartAxisRepresent an axis inSChart.- Author:
- henri
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classSChartAxis.SChartAxisType
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetFormat()Returns the tick label in excel format; null if no such info.longgetId()java.lang.DoublegetMax()Returns the maximum value on this axis.java.lang.DoublegetMin()Returns the minimum value on this axis.SChartAxis.SChartAxisTypegetType()Returns the type of this axis.voidsetFormat(java.lang.String format)voidsetMax(java.lang.Double max)voidsetMin(java.lang.Double min)
-
-
-
Method Detail
-
getId
long getId()
-
getType
SChartAxis.SChartAxisType getType()
Returns the type of this axis.- Returns:
-
getMax
java.lang.Double getMax()
Returns the maximum value on this axis.
-
setMax
void setMax(java.lang.Double max)
-
getMin
java.lang.Double getMin()
Returns the minimum value on this axis.
-
setMin
void setMin(java.lang.Double min)
-
getFormat
java.lang.String getFormat()
Returns the tick label in excel format; null if no such info.
-
setFormat
void setFormat(java.lang.String format)
-
-