EmbeddedChart setOptions选项在哪里?

时间:2016-04-25 12:04:11

标签: google-apps-script google-sheets google-apps

我使用EmbeddedChartBuilder动态创建图表,工作正常。基本示例:

 var spreadsheet = SpreadsheetApp.getActiveSpreadsheet();
 var sheet = spreadsheet.getSheetByName('Charts');
 var chart = sheet.newChart()
    .setPosition(1, 1, 0, 0)
    .setChartType(Charts.ChartType.AREA)
    .addRange(spreadsheet.getSheetByName('Data').getRange("A1:A10"))
    .build();
 sheet.insertChart(chart); 

但是我需要使用setOption方法自定义图表。 The documentation says

  

为此图表设置高级选项。看到   https://developers.google.com/chart/interactive/docs/reference   有哪些选择。

但是按照他们提供的链接(/ chart / interactive / docs / reference),我唯一看到的是:

enter image description here

试图找到vAxis并不会导致任何问题。 Looking at another page on advanced chart customization,我再一次看到了示例,但没有参考:

var options = {
  width: 400,
  height: 240,
  title: 'Toppings I Like On My Pizza',
  colors: ['#e0440e', '#e6693e', '#ec8f6e', '#f3b49f', '#f6c7b6']
};

setOption方法的所有可用选项列表在哪里?

1 个答案:

答案 0 :(得分:1)

您可以在所发布链接的Guides页面(而非参考页面)上找到各种图表类型的选项。 例如,条形图类型的选项位于:https://developers.google.com/chart/interactive/docs/gallery/barchart#configuration-options