Class AreaChartBuilder Stay organized with collections Save and categorize content based on your preferences.
Page Summary
AreaChartBuilder is used to create area charts.
You can set various chart options like title, axis titles, dimensions, colors, and data using the builder methods.
Data for the chart can be provided via a DataTable or a data source URL.
The
build()method is used to finalize the chart creation and returns a Chart object.
Builder for area charts. For more details, see theGoogle Charts documentation.
Here is an example that shows how to build an area chart.
// Create a data table with some sample data.constsampleData=Charts.newDataTable().addColumn(Charts.ColumnType.STRING,'Month').addColumn(Charts.ColumnType.NUMBER,'Dining').addColumn(Charts.ColumnType.NUMBER,'Total').addRow(['Jan',60,520]).addRow(['Feb',50,430]).addRow(['Mar',53,440]).addRow(['Apr',70,410]).addRow(['May',80,390]).addRow(['Jun',60,500]).addRow(['Jul',100,450]).addRow(['Aug',140,431]).addRow(['Sep',75,488]).addRow(['Oct',70,521]).addRow(['Nov',58,388]).addRow(['Dec',63,400]).build();constchart=Charts.newAreaChart().setTitle('Yearly Spending').setXAxisTitle('Month').setYAxisTitle('Spending (USD)').setDimensions(600,500).setStacked().setColors(['red','green']).setDataTable(sampleData).build();
Methods
| Method | Return type | Brief description |
|---|---|---|
build() | Chart | Builds the chart. |
reverse | Area | Reverses the drawing of series in the domain axis. |
set | Area | Sets the background color for the chart. |
set | Area | Sets the colors for the lines in the chart. |
set | Area | Sets the data source URL that is used to pull data in from an external source, such as GoogleSheets. |
set | Area | Sets the data table to use for the chart using a DataTableBuilder. |
set | Area | Sets the data table which contains the lines for the chart, as well as the X-axis labels. |
set | Area | Sets the data view definition to use for the chart. |
set | Area | Sets the dimensions for the chart. |
set | Area | Sets the position of the legend with respect to the chart. |
set | Area | Sets the text style of the chart legend. |
set | Area | Sets advanced options for this chart. |
set | Area | Sets the style for points in the line. |
set | Area | Sets the range for the chart. |
set | Area | Uses stacked lines, meaning that line and bar values are stacked (accumulated). |
set | Area | Sets the title of the chart. |
set | Area | Sets the text style of the chart title. |
set | Area | Sets the horizontal axis text style. |
set | Area | Adds a title to the horizontal axis. |
set | Area | Sets the horizontal axis title text style. |
set | Area | Sets the vertical axis text style. |
set | Area | Adds a title to the vertical axis. |
set | Area | Sets the vertical axis title text style. |
use | Area | Makes the range axis into a logarithmic scale (requires all values to be positive). |
Detailed documentation
build()
Builds the chart.
Return
Chart — A Chart object, which can be embedded into documents, UI elements, or used as a static image.
reverseCategories()
Reverses the drawing of series in the domain axis. For vertical-range charts (such as line,area or column charts), this means the horizontal axis is drawn from right to left. Forhorizontal-range charts (such as bar charts), this means the vertical axis is drawn from top tobottom. For pie charts, this means the slices are drawn counterclockwise.
// Creates a pie chart builder and sets drawing of the slices in a// counter-clockwise manner.constbuilder=Charts.newPieChart();builder.reverseCategories();
Return
Area — This builder, useful for chaining.
setBackgroundColor(cssValue)
Sets the background color for the chart.
// Creates a line chart builder and sets the background color to grayconstbuilder=Charts.newLineChart();builder.setBackgroundColor('gray');
Parameters
| Name | Type | Description |
|---|---|---|
css | String | The CSS value for the color (such as"blue" or"#00f"). |
Return
Area — This builder, useful for chaining.
setColors(cssValues)
Sets the colors for the lines in the chart.
// Creates a line chart builder and sets the first two lines to be drawn in// green and red, respectively.constbuilder=Charts.newLineChart();builder.setColors(['green','red']);
Parameters
| Name | Type | Description |
|---|---|---|
css | String[] | An array of color CSS values, such as["red", "#acf"]. The nth element in the array represents the color of the nth line in the chart. |
Return
Area — This builder, useful for chaining.
setDataSourceUrl(url)
Sets the data source URL that is used to pull data in from an external source, such as GoogleSheets. If a data source URL and a DataTable are provided, the data source URL is ignored.
For more information about querying data sources, check out theGoogle Charts documentation.
Parameters
| Name | Type | Description |
|---|---|---|
url | String | The data source URL, including any query parameters. |
Return
Area — This builder, useful for chaining.
setDataTable(tableBuilder)
Sets the data table to use for the chart using a DataTableBuilder. This is a convenience methodfor setting the data table without needing to callbuild().
Parameters
| Name | Type | Description |
|---|---|---|
table | Data | A data table builder. A new data table is created instantly as part of this call, so any further updates to the builder won't be reflected in the chart. |
Return
Area — This builder, useful for chaining.
setDataTable(table)
Sets the data table which contains the lines for the chart, as well as the X-axis labels. Thefirst column should be a string, and contain the horizontal axis labels. Any number of columnscan follow, all must be numeric. Each column is displayed as a separate line.
Parameters
| Name | Type | Description |
|---|---|---|
table | Data | The data table to use for the chart. |
Return
Area — This builder, useful for chaining.
setDataViewDefinition(dataViewDefinition)
Sets the data view definition to use for the chart.
Parameters
| Name | Type | Description |
|---|---|---|
data | Data | A data view definition object that defines the view that should be derived from the given data source for the chart drawing. |
Return
Area — This builder, useful for chaining.
setDimensions(width, height)
Sets the dimensions for the chart.
Parameters
| Name | Type | Description |
|---|---|---|
width | Integer | The width of the chart, in pixels. |
height | Integer | The height of the chart, in pixels. |
Return
Area — This builder, useful for chaining.
setLegendPosition(position)
Sets the position of the legend with respect to the chart. By default, there is no legend.
// Creates a line chart builder and sets the legend position to right.constbuilder=Charts.newLineChart();builder.setLegendPosition(Charts.Position.RIGHT);
Parameters
| Name | Type | Description |
|---|---|---|
position | Position | The position of the legend. |
Return
Area — This builder, useful for chaining.
setLegendTextStyle(textStyle)
Sets the text style of the chart legend.
// Creates a line chart builder and sets it up for a blue, 26-point legend.consttextStyleBuilder=Charts.newTextStyle().setColor('#0000FF').setFontSize(26);conststyle=textStyleBuilder.build();constbuilder=Charts.newLineChart();builder.setLegendTextStyle(style);
Parameters
| Name | Type | Description |
|---|---|---|
text | Text | The text style to use for the chart legend. |
Return
Area — This builder, useful for chaining.
setOption(option, value)
Sets advanced options for this chart. Seethe available options forthis chart. This method has no effect if the given option is invalid.
// Build an area chart with a 1-second animation duration.constbuilder=Charts.newAreaChart();builder.setOption('animation.duration',1000);constchart=builder.build();
Parameters
| Name | Type | Description |
|---|---|---|
option | String | The option to set. |
value | Object | The value to set. |
Return
Area — This builder, useful for chaining.
setPointStyle(style)
Sets the style for points in the line. By default, points have no particular styles, and onlythe line is visible.
// Creates a line chart builder and sets large point style.constbuilder=Charts.newLineChart();builder.setPointStyle(Charts.PointStyle.LARGE);
Parameters
| Name | Type | Description |
|---|---|---|
style | Point | The style to use for points in the line. |
Return
Area — This builder, useful for chaining.
See also
setRange(start, end)
Sets the range for the chart.
If any data points fall outside the range, the range is expanded to include those datapoints.
Parameters
| Name | Type | Description |
|---|---|---|
start | Number | The value for the lowest grid line of the range axis. |
end | Number | The value for the highest grid line of the range axis. |
Return
Area — This builder, useful for chaining.
setStacked()
Uses stacked lines, meaning that line and bar values are stacked (accumulated). By default,there is no stacking.
Return
Area — This builder, useful for chaining.
setTitle(chartTitle)
Sets the title of the chart. The title is displayed centered above the chart.
// Creates a line chart builder and title to 'My Line Chart'.constbuilder=Charts.newLineChart();builder.setTitle('My Line Chart');
Parameters
| Name | Type | Description |
|---|---|---|
chart | String | the chart title. |
Return
Area — This builder, useful for chaining.
setTitleTextStyle(textStyle)
Sets the text style of the chart title.
// Creates a line chart builder and sets it up for a blue, 26-point title.consttextStyleBuilder=Charts.newTextStyle().setColor('#0000FF').setFontSize(26);conststyle=textStyleBuilder.build();constbuilder=Charts.newLineChart();builder.setTitleTextStyle(style);
Parameters
| Name | Type | Description |
|---|---|---|
text | Text | The text style to use for the chart title. You can create aText object by callingCharts.newTextStyle(). |
Return
Area — This builder, useful for chaining.
setXAxisTextStyle(textStyle)
Sets the horizontal axis text style.
// Creates a line chart builder and sets the X-axis text style to blue, 18-point// font.consttextStyle=Charts.newTextStyle().setColor('blue').setFontSize(18).build();constbuilder=Charts.newLineChart();builder.setXAxisTextStyle(textStyle);
Parameters
| Name | Type | Description |
|---|---|---|
text | Text | The text style to use for the horizontal axis title. You can create aText object by callingCharts.newTextStyle(). |
Return
Area — This builder, useful for chaining.
setXAxisTitle(title)
Adds a title to the horizontal axis. The title is centered and appears below the axis valuelabels.
// Creates a line chart builder and sets the X-axis title.constbuilder=Charts.newLineChart();builder.setTitle('X-axis Title');
Parameters
| Name | Type | Description |
|---|---|---|
title | String | The title for the X-axis. |
Return
Area — This builder, useful for chaining.
setXAxisTitleTextStyle(textStyle)
Sets the horizontal axis title text style.
// Creates a line chart builder and sets the X-axis title text style to blue,// 18-point font.consttextStyle=Charts.newTextStyle().setColor('blue').setFontSize(18).build();constbuilder=Charts.newLineChart();builder.setXAxisTitleTextStyle(textStyle);
Parameters
| Name | Type | Description |
|---|---|---|
text | Text | The text style to use for the horizontal axis title. You can create aText object by callingCharts.newTextStyle(). |
Return
Area — This builder, useful for chaining.
setYAxisTextStyle(textStyle)
Sets the vertical axis text style.
// Creates a line chart builder and sets the Y-axis text style to blue, 18-point// font.consttextStyle=Charts.newTextStyle().setColor('blue').setFontSize(18).build();constbuilder=Charts.newLineChart();builder.setYAxisTextStyle(textStyle);
Parameters
| Name | Type | Description |
|---|---|---|
text | Text | The text style to use for the horizontal axis title. You can create aText object by callingCharts.newTextStyle(). |
Return
Area — This builder, useful for chaining.
setYAxisTitle(title)
Adds a title to the vertical axis. The title is centered and appears to the left of the valuelabels.
// Creates a line chart builder and sets the Y-axis title.constbuilder=Charts.newLineChart();builder.setYAxisTitle('Y-axis Title');
Parameters
| Name | Type | Description |
|---|---|---|
title | String | The title for the Y-axis. |
Return
Area — This builder, useful for chaining.
setYAxisTitleTextStyle(textStyle)
Sets the vertical axis title text style.
// Creates a line chart builder and sets the Y-axis title text style to blue,// 18-point font.consttextStyle=Charts.newTextStyle().setColor('blue').setFontSize(18).build();constbuilder=Charts.newLineChart();builder.setYAxisTitleTextStyle(textStyle);
Parameters
| Name | Type | Description |
|---|---|---|
text | Text | The text style to use for the horizontal axis title. You can create aText object by callingCharts.newTextStyle(). |
Return
Area — This builder, useful for chaining.
useLogScale()
Makes the range axis into a logarithmic scale (requires all values to be positive). The rangeaxis are the vertical axis for vertical charts (such as line, area, or column) and thehorizontal axis for horizontal charts (such as bar).
Return
Area — This builder, useful for chaining.
Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-12-11 UTC.