Package io.keikai.model
Interface SChart
-
- All Known Implementing Classes:
AbstractChartAdv,ChartImpl
public interface SChartRepresents a chart in a sheet.- Since:
- 3.5.0
- Author:
- dennis
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classSChart.BarDirectionstatic classSChart.ChartGroupingstatic classSChart.ChartLegendPositionstatic classSChart.ChartType
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddCategoryAxis(SChartAxis axis)voidaddDateAxis(SChartAxis axis)voidaddValueAxis(SChartAxis axis)ViewAnchorgetAnchor()SChart.BarDirectiongetBarDirection()intgetBarOverlap()java.util.List<SChartAxis>getCategoryAxises()SChartDatagetData()java.util.List<SChartAxis>getDateAxises()intgetDepthPercent()SChart.ChartGroupinggetGrouping()intgetHPercent()java.lang.StringgetId()SChart.ChartLegendPositiongetLegendPosition()java.lang.StringgetName()Returns the name.intgetPerspective()intgetRotX()intgetRotY()SSheetgetSheet()java.lang.StringgetTitle()SChart.ChartTypegetType()java.util.List<SChartAxis>getValueAxises()java.lang.StringgetXAxisTitle()java.lang.StringgetYAxisTitle()booleanisEmptyAsGaps()booleanisPlotOnlyVisibleCells()booleanisRightAngleAxes()booleanisSparkline()booleanisThreeD()booleanisWinloseSpark()voidsetAnchor(ViewAnchor anchor)voidsetBarOverlap(int overlap)voidsetDepthPercent(int percent)voidsetEmptyAsGaps(boolean emptyAsGaps)voidsetGrouping(SChart.ChartGrouping grouping)voidsetHPercent(int percent)voidsetLegendPosition(SChart.ChartLegendPosition pos)voidsetName(java.lang.String name)Sets the name.voidsetPerspective(int perspective)voidsetPlotOnlyVisibleCells(boolean plotOnlyVisibleCells)voidsetRightAngleAxes(boolean b)voidsetRotX(int rotX)voidsetRotY(int rotY)voidsetSparkline(boolean sparkline)voidsetThreeD(boolean threeD)voidsetTitle(java.lang.String title)voidsetWinloseSpark(boolean winlose)voidsetXAxisTitle(java.lang.String xAxisTitle)voidsetYAxisTitle(java.lang.String yAxisTitle)
-
-
-
Method Detail
-
getId
java.lang.String getId()
-
getSheet
SSheet getSheet()
-
getType
SChart.ChartType getType()
-
getData
SChartData getData()
-
getAnchor
ViewAnchor getAnchor()
-
setAnchor
void setAnchor(ViewAnchor anchor)
-
getTitle
java.lang.String getTitle()
-
getXAxisTitle
java.lang.String getXAxisTitle()
-
getYAxisTitle
java.lang.String getYAxisTitle()
-
setTitle
void setTitle(java.lang.String title)
-
setXAxisTitle
void setXAxisTitle(java.lang.String xAxisTitle)
-
setYAxisTitle
void setYAxisTitle(java.lang.String yAxisTitle)
-
setLegendPosition
void setLegendPosition(SChart.ChartLegendPosition pos)
-
getLegendPosition
SChart.ChartLegendPosition getLegendPosition()
-
setGrouping
void setGrouping(SChart.ChartGrouping grouping)
-
getGrouping
SChart.ChartGrouping getGrouping()
-
getBarDirection
SChart.BarDirection getBarDirection()
-
isThreeD
boolean isThreeD()
-
setThreeD
void setThreeD(boolean threeD)
-
getValueAxises
java.util.List<SChartAxis> getValueAxises()
-
getCategoryAxises
java.util.List<SChartAxis> getCategoryAxises()
-
getDateAxises
java.util.List<SChartAxis> getDateAxises()
-
addValueAxis
void addValueAxis(SChartAxis axis)
-
addCategoryAxis
void addCategoryAxis(SChartAxis axis)
-
addDateAxis
void addDateAxis(SChartAxis axis)
-
getRotX
int getRotX()
-
setRotX
void setRotX(int rotX)
-
getRotY
int getRotY()
-
setRotY
void setRotY(int rotY)
-
getPerspective
int getPerspective()
-
setPerspective
void setPerspective(int perspective)
-
getHPercent
int getHPercent()
-
setHPercent
void setHPercent(int percent)
-
getDepthPercent
int getDepthPercent()
-
setDepthPercent
void setDepthPercent(int percent)
-
isRightAngleAxes
boolean isRightAngleAxes()
-
setRightAngleAxes
void setRightAngleAxes(boolean b)
-
getBarOverlap
int getBarOverlap()
-
setBarOverlap
void setBarOverlap(int overlap)
-
setPlotOnlyVisibleCells
void setPlotOnlyVisibleCells(boolean plotOnlyVisibleCells)
-
isPlotOnlyVisibleCells
boolean isPlotOnlyVisibleCells()
-
setEmptyAsGaps
void setEmptyAsGaps(boolean emptyAsGaps)
-
isEmptyAsGaps
boolean isEmptyAsGaps()
-
setSparkline
void setSparkline(boolean sparkline)
-
isSparkline
boolean isSparkline()
-
setWinloseSpark
void setWinloseSpark(boolean winlose)
-
isWinloseSpark
boolean isWinloseSpark()
-
getName
java.lang.String getName()
Returns the name.- Returns:
- name
- Since:
- 6.2.0
-
setName
void setName(java.lang.String name)
Sets the name.- Since:
- 6.2.0
-
-