Package io.keikai.model
Interface SChartDataTable
- All Known Implementing Classes:
ChartDataTableImpl
public interface SChartDataTable
Represents a data table displayed below a chart.
Reference: ECMA-376 5th Edition, sect. 21.2.2.38 (dTable).
- Since:
- 7.0.0
-
Method Summary
Modifier and TypeMethodDescriptionbooleanReturns whether horizontal borders are shown in the data table.booleanReturns whether legend keys are shown in the data table.booleanReturns whether an outline border is shown around the data table.booleanReturns whether vertical borders are shown in the data table.voidsetShowHorizontalBorder(boolean show) Sets whether horizontal borders are shown in the data table.voidsetShowLegendKeys(boolean show) Sets whether legend keys are shown in the data table.voidsetShowOutline(boolean show) Sets whether an outline border is shown around the data table.voidsetShowVerticalBorder(boolean show) Sets whether vertical borders are shown in the data table.
-
Method Details
-
isShowHorizontalBorder
boolean isShowHorizontalBorder()Returns whether horizontal borders are shown in the data table. -
setShowHorizontalBorder
void setShowHorizontalBorder(boolean show) Sets whether horizontal borders are shown in the data table. -
isShowVerticalBorder
boolean isShowVerticalBorder()Returns whether vertical borders are shown in the data table. -
setShowVerticalBorder
void setShowVerticalBorder(boolean show) Sets whether vertical borders are shown in the data table. -
isShowOutline
boolean isShowOutline()Returns whether an outline border is shown around the data table. -
setShowOutline
void setShowOutline(boolean show) Sets whether an outline border is shown around the data table. -
isShowLegendKeys
boolean isShowLegendKeys()Returns whether legend keys are shown in the data table. -
setShowLegendKeys
void setShowLegendKeys(boolean show) Sets whether legend keys are shown in the data table.
-