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 Type
    Method
    Description
    boolean
    Returns whether horizontal borders are shown in the data table.
    boolean
    Returns whether legend keys are shown in the data table.
    boolean
    Returns whether an outline border is shown around the data table.
    boolean
    Returns whether vertical borders are shown in the data table.
    void
    Sets whether horizontal borders are shown in the data table.
    void
    setShowLegendKeys(boolean show)
    Sets whether legend keys are shown in the data table.
    void
    setShowOutline(boolean show)
    Sets whether an outline border is shown around the data table.
    void
    setShowVerticalBorder(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.