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