Trait

com.google.appsscript.spreadsheet

EmbeddedTableChartBuilder

Related Doc: package spreadsheet

Permalink

trait EmbeddedTableChartBuilder extends Object

EmbeddedTableChartBuilder Builder for table charts. For more details, see the Gviz documentation.

Annotations
@RawJSType()
Linear Supertypes
Object, Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EmbeddedTableChartBuilder
  2. Object
  3. Any
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def addRange(range: Range): EmbeddedChartBuilder

    Permalink

    Adds a Range to the chart represented by this builder.

    Adds a Range to the chart represented by this builder. Will not add the Range if it has already been added to the chart.

  5. def asAreaChart(): EmbeddedAreaChartBuilder

    Permalink

    Sets the chart type to AreaChart and returns an EmbeddedAreaChartBuilder.

  6. def asBarChart(): EmbeddedBarChartBuilder

    Permalink

    Sets the chart type to BarChart and returns an EmbeddedBarChartBuilder.

  7. def asColumnChart(): EmbeddedColumnChartBuilder

    Permalink

    Sets the chart type to ColumnChart and returns an EmbeddedColumnChartBuilder.

  8. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  9. def asLineChart(): EmbeddedLineChartBuilder

    Permalink

    Sets the chart type to LineChart and returns an EmbeddedLineChartBuilder.

  10. def asPieChart(): EmbeddedPieChartBuilder

    Permalink

    Sets the chart type to PieChart and returns an EmbeddedPieChartBuilder.

  11. def asScatterChart(): EmbeddedScatterChartBuilder

    Permalink

    Sets the chart type to ScatterChart and returns an EmbeddedScatterChartBuilder.

  12. def asTableChart(): EmbeddedTableChartBuilder

    Permalink

    Sets the chart type to TableChart and returns an EmbeddedTableChartBuilder.

  13. def build(): EmbeddedChart

    Permalink

    Builds the chart to reflect all changes made to it.

    Builds the chart to reflect all changes made to it. This method will not automatically draw the chart on top of the spreadsheet. A new chart must be inserted via sheet.insertChart(chart), and an existing chart should be updated via sheet.update(chart);

  14. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  15. def enablePaging(pageSize: Int, startPage: Int): EmbeddedTableChartBuilder

    Permalink

    Enables paging, sets the number of rows in each page and the first table page to display (page numbers are zero based).

  16. def enablePaging(pageSize: Int): EmbeddedTableChartBuilder

    Permalink

    Enables paging and sets the number of rows in each page.

  17. def enablePaging(enablePaging: Boolean): EmbeddedTableChartBuilder

    Permalink

    Sets whether to enable paging through the data.

  18. def enableRtlTable(rtlEnabled: Boolean): EmbeddedTableChartBuilder

    Permalink

    Adds basic support for right-to-left languages (such as Arabic or Hebrew) by reversing the column order of the table, so that column zero is the right-most column, and the last column is the left-most column.

  19. def enableSorting(enableSorting: Boolean): EmbeddedTableChartBuilder

    Permalink

    Sets whether to sort columns when the user clicks a column heading.

  20. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  21. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  22. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  23. def getChartType(): ChartType

    Permalink

    Returns the current chart type.

  24. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  25. def getContainer(): ContainerInfo

    Permalink

    Return the ContainerInfo, which encapsulates where the chart appears on the sheet.

  26. def getRanges(): Array[Range]

    Permalink

    Returns a copy of the list of ranges currently providing data for this chart.

    Returns a copy of the list of ranges currently providing data for this chart. Use addRange and removeRange to modify this list.

  27. def hasOwnProperty(v: String): Boolean

    Permalink
    Definition Classes
    Object
  28. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  29. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  30. def isPrototypeOf(v: Object): Boolean

    Permalink
    Definition Classes
    Object
  31. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  32. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  33. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  34. def propertyIsEnumerable(v: String): Boolean

    Permalink
    Definition Classes
    Object
  35. def removeRange(range: Range): EmbeddedChartBuilder

    Permalink

    Removes the specified Range from the chart represented by this builder.

    Removes the specified Range from the chart represented by this builder. Will not throw an error if the Range is not in this chart. The range removed must match up with a range added via addRange(range), or it will not be removed, and it will not throw an exception. This method cannot be used to partially remove values from a range.

  36. def setChartType(type: ChartType): EmbeddedChartBuilder

    Permalink

    Changes the type of chart.

    Changes the type of chart. Not all embedded chart types are currently supported. See ChartType.

  37. def setFirstRowNumber(number: Int): EmbeddedTableChartBuilder

    Permalink

    Sets the row number for the first row in the data table.

  38. def setInitialSortingAscending(column: Int): EmbeddedTableChartBuilder

    Permalink

    Sets the index of the column according to which the table should be initially sorted (ascending).

  39. def setInitialSortingDescending(column: Int): EmbeddedTableChartBuilder

    Permalink

    Sets the index of the column according to which the table should be initially sorted (descending).

  40. def setOption(option: String, value: AnyRef): EmbeddedChartBuilder

    Permalink

  41. def setPosition(anchorRowPos: Int, anchorColPos: Int, offsetX: Int, offsetY: Int): EmbeddedChartBuilder

    Permalink

    Sets the position, changing where the chart appears on the sheet.

    Sets the position, changing where the chart appears on the sheet. AnchorRowPos and AnchorColPos are 1-indexed.

  42. def showRowNumberColumn(showRowNumber: Boolean): EmbeddedTableChartBuilder

    Permalink

    Sets whether to show the row number as the first column of the table.

  43. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  44. def toLocaleString(): String

    Permalink
    Definition Classes
    Object
  45. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  46. def useAlternatingRowStyle(alternate: Boolean): EmbeddedTableChartBuilder

    Permalink

    Sets whether alternating color style will be assigned to odd and even rows of a table chart.

  47. def valueOf(): Any

    Permalink
    Definition Classes
    Object
  48. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  49. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  50. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped