縦棒グラフのビルダー。詳細については、Google グラフのドキュメントをご覧ください。
この例では、データ表のデータを使用して棒グラフを作成する方法を示します。
const sampleData = Charts.newDataTable() .addColumn(Charts.ColumnType.STRING, 'Year') .addColumn(Charts.ColumnType.NUMBER, 'Sales') .addColumn(Charts.ColumnType.NUMBER, 'Expenses') .addRow(['2004', 1000, 400]) .addRow(['2005', 1170, 460]) .addRow(['2006', 660, 1120]) .addRow(['2007', 1030, 540]) .addRow(['2008', 800, 600]) .addRow(['2009', 943, 678]) .addRow(['2010', 1020, 550]) .addRow(['2011', 910, 700]) .addRow(['2012', 1230, 840]) .build(); const chart = Charts.newColumnChart() .setTitle('Sales & Expenses') .setXAxisTitle('Year') .setYAxisTitle('Amount (USD)') .setDimensions(600, 500) .setDataTable(sampleData) .build();
メソッド
詳細なドキュメント
build()
reverse Categories()
ドメイン軸での系列の描画を反転します。垂直範囲グラフ(折れ線グラフ、面グラフ、棒グラフなど)の場合、水平軸は右から左に描画されます。横方向の範囲グラフ(棒グラフなど)の場合、垂直軸は上から下に描画されます。円グラフの場合、スライスは反時計回りに描画されます。
// Creates a pie chart builder and sets drawing of the slices in a // counter-clockwise manner. const builder = Charts.newPieChart(); builder.reverseCategories();
戻る
Column
- このビルダーはチェーンに役立ちます。
set Background Color(cssValue)
グラフの背景色を設定します。
// Creates a line chart builder and sets the background color to gray const builder = Charts.newLineChart(); builder.setBackgroundColor('gray');
パラメータ
名前 | 型 | 説明 |
---|---|---|
css | String | 色の CSS 値("blue" や "#00f" など)。 |
戻る
Column
- このビルダーはチェーンに役立ちます。
set Colors(cssValues)
グラフの線の色を設定します。
// Creates a line chart builder and sets the first two lines to be drawn in // green and red, respectively. const builder = Charts.newLineChart(); builder.setColors(['green', 'red']);
パラメータ
名前 | 型 | 説明 |
---|---|---|
css | String[] | 色の CSS 値の配列(["red", "#acf"] など)。配列の n 番目の要素は、グラフの n 番目の線の色を表します。 |
戻る
Column
- このビルダーはチェーンに役立ちます。
set Data Source Url(url)
Google スプレッドシートなどの外部ソースからデータを取得するために使用されるデータソースの URL を設定します。データソースの URL と DataTable が指定されている場合、データソースの URL は無視されます。
データソースへのクエリについて詳しくは、Google グラフのドキュメントをご覧ください。
パラメータ
名前 | 型 | 説明 |
---|---|---|
url | String | クエリ パラメータを含むデータソースの URL。 |
戻る
Column
- このビルダーはチェーンに役立ちます。
set Data Table(tableBuilder)
DataTableBuilder を使用して、グラフに使用するデータテーブルを設定します。これは、build()
を呼び出すことなくデータテーブルを設定する便利なメソッドです。
パラメータ
名前 | 型 | 説明 |
---|---|---|
table | Data | データテーブル ビルダー。この呼び出しの一部として新しいデータ表が即座に作成されるため、ビルダーの更新はグラフに反映されません。 |
戻る
Column
- このビルダーはチェーンに役立ちます。
set Data Table(table)
グラフの線と X 軸ラベルを含むデータ表を設定します。最初の列は文字列で、横軸のラベルを含める必要があります。その後に任意の数の列を追加できます。すべての列は数値にする必要があります。各列は個別の行として表示されます。
パラメータ
名前 | 型 | 説明 |
---|---|---|
table | Data | グラフに使用するデータ表。 |
戻る
Column
- このビルダーはチェーンに役立ちます。
set Data View Definition(dataViewDefinition)
グラフに使用するデータビューの定義を設定します。
パラメータ
名前 | 型 | 説明 |
---|---|---|
data | Data | グラフの描画に使用するデータソースから派生させるビューを定義するデータビュー定義オブジェクト。 |
戻る
Column
- このビルダーはチェーンに役立ちます。
set Dimensions(width, height)
グラフのディメンションを設定します。
パラメータ
名前 | 型 | 説明 |
---|---|---|
width | Integer | グラフの幅(ピクセル単位)。 |
height | Integer | グラフの高さ(ピクセル単位)。 |
戻る
Column
- このビルダーはチェーンに役立ちます。
set Legend Position(position)
グラフに対する凡例の位置を設定します。デフォルトでは、凡例はありません。
// Creates a line chart builder and sets the legend position to right. const builder = Charts.newLineChart(); builder.setLegendPosition(Charts.Position.RIGHT);
パラメータ
名前 | 型 | 説明 |
---|---|---|
position | Position | 凡例の位置。 |
戻る
Column
- このビルダーはチェーンに役立ちます。
set Legend Text Style(textStyle)
グラフの凡例のテキスト スタイルを設定します。
// Creates a line chart builder and sets it up for a blue, 26-point legend. const textStyleBuilder = Charts.newTextStyle().setColor('#0000FF').setFontSize(26); const style = textStyleBuilder.build(); const builder = Charts.newLineChart(); builder.setLegendTextStyle(style);
パラメータ
名前 | 型 | 説明 |
---|---|---|
text | Text | グラフの凡例に使用するテキスト スタイル。 |
戻る
Column
- このビルダーはチェーンに役立ちます。
set Option(option, value)
このグラフの詳細オプションを設定します。このグラフで使用可能なオプションをご覧ください。指定されたオプションが無効な場合、このメソッドは効果を生じさせません。
// Build a column chart with a 1-second animation duration. const builder = Charts.newColumnChart(); builder.setOption('animation.duration', 1000); const chart = builder.build();
パラメータ
名前 | 型 | 説明 |
---|---|---|
option | String | 設定するオプション。 |
value | Object | 設定する値。 |
戻る
Column
- このビルダーはチェーンに役立ちます。
set Range(start, end)
グラフの範囲を設定します。
データポイントが範囲外にある場合は、そのデータポイントを含むように範囲が拡大されます。
パラメータ
名前 | 型 | 説明 |
---|---|---|
start | Number | 範囲軸の最下位のグリッド線の値。 |
end | Number | 範囲軸の最も高いグリッド線の値。 |
戻る
Column
- このビルダーはチェーンに役立ちます。
set Stacked()
積み上げ線を使用します。つまり、線と棒の値が積み上げ(累積)されます。デフォルトでは、スタッキングは行われません。
戻る
Column
- このビルダーはチェーンに役立ちます。
set Title(chartTitle)
グラフのタイトルを設定します。タイトルはグラフの上に中央に表示されます。
// Creates a line chart builder and title to 'My Line Chart'. const builder = Charts.newLineChart(); builder.setTitle('My Line Chart');
パラメータ
名前 | 型 | 説明 |
---|---|---|
chart | String | グラフのタイトル。 |
戻る
Column
- このビルダーはチェーンに役立ちます。
set Title Text Style(textStyle)
グラフのタイトルのテキスト スタイルを設定します。
// Creates a line chart builder and sets it up for a blue, 26-point title. const textStyleBuilder = Charts.newTextStyle().setColor('#0000FF').setFontSize(26); const style = textStyleBuilder.build(); const builder = Charts.newLineChart(); builder.setTitleTextStyle(style);
パラメータ
名前 | 型 | 説明 |
---|---|---|
text | Text | グラフのタイトルに使用するテキスト スタイル。Text オブジェクトを作成するには、Charts.newTextStyle() を呼び出します。 |
戻る
Column
- このビルダーはチェーンに役立ちます。
set XAxis Text Style(textStyle)
横軸のテキスト スタイルを設定します。
// Creates a line chart builder and sets the X-axis text style to blue, 18-point // font. const textStyle = Charts.newTextStyle().setColor('blue').setFontSize(18).build(); const builder = Charts.newLineChart(); builder.setXAxisTextStyle(textStyle);
パラメータ
名前 | 型 | 説明 |
---|---|---|
text | Text | 横軸のタイトルに使用するテキスト スタイル。Text オブジェクトを作成するには、Charts.newTextStyle() を呼び出します。 |
戻る
Column
- このビルダーはチェーンに役立ちます。
set XAxis Title(title)
横軸にタイトルを追加します。タイトルは中央に配置され、軸値ラベルの下に表示されます。
// Creates a line chart builder and sets the X-axis title. const builder = Charts.newLineChart(); builder.setTitle('X-axis Title');
パラメータ
名前 | 型 | 説明 |
---|---|---|
title | String | X 軸のタイトル。 |
戻る
Column
- このビルダーはチェーンに役立ちます。
set XAxis Title Text Style(textStyle)
横軸のタイトル テキストのスタイルを設定します。
// Creates a line chart builder and sets the X-axis title text style to blue, // 18-point font. const textStyle = Charts.newTextStyle().setColor('blue').setFontSize(18).build(); const builder = Charts.newLineChart(); builder.setXAxisTitleTextStyle(textStyle);
パラメータ
名前 | 型 | 説明 |
---|---|---|
text | Text | 横軸のタイトルに使用するテキスト スタイル。Text オブジェクトを作成するには、Charts.newTextStyle() を呼び出します。 |
戻る
Column
- このビルダーはチェーンに役立ちます。
set YAxis Text Style(textStyle)
縦軸のテキスト スタイルを設定します。
// Creates a line chart builder and sets the Y-axis text style to blue, 18-point // font. const textStyle = Charts.newTextStyle().setColor('blue').setFontSize(18).build(); const builder = Charts.newLineChart(); builder.setYAxisTextStyle(textStyle);
パラメータ
名前 | 型 | 説明 |
---|---|---|
text | Text | 横軸のタイトルに使用するテキスト スタイル。Text オブジェクトを作成するには、Charts.newTextStyle() を呼び出します。 |
戻る
Column
- このビルダーはチェーンに役立ちます。
set YAxis Title(title)
縦軸にタイトルを追加します。タイトルは中央に配置され、値ラベルの左側に表示されます。
// Creates a line chart builder and sets the Y-axis title. const builder = Charts.newLineChart(); builder.setYAxisTitle('Y-axis Title');
パラメータ
名前 | 型 | 説明 |
---|---|---|
title | String | Y 軸のタイトル。 |
戻る
Column
- このビルダーはチェーンに役立ちます。
set YAxis Title Text Style(textStyle)
縦軸のタイトル テキストのスタイルを設定します。
// Creates a line chart builder and sets the Y-axis title text style to blue, // 18-point font. const textStyle = Charts.newTextStyle().setColor('blue').setFontSize(18).build(); const builder = Charts.newLineChart(); builder.setYAxisTitleTextStyle(textStyle);
パラメータ
名前 | 型 | 説明 |
---|---|---|
text | Text | 横軸のタイトルに使用するテキスト スタイル。Text オブジェクトを作成するには、Charts.newTextStyle() を呼び出します。 |
戻る
Column
- このビルダーはチェーンに役立ちます。
use Log Scale()
範囲軸を対数目盛にします(すべての値が正である必要があります)。範囲軸は、縦型グラフ(折れ線グラフ、面グラフ、縦棒グラフなど)では縦軸、横型グラフ(棒グラフなど)では横軸です。
戻る
Column
- このビルダーはチェーンに役立ちます。