在Google电子表格中将x轴显示为图例

时间:2013-12-22 17:56:50

标签: javascript google-apps-script google-api google-spreadsheet-api

我在google电子表格上有一个列条形图(由javascript api创建)。用于创建图表的代码是

  var imageSheetChart = imageSheet.newChart()
     .setChartType(Charts.ChartType.COLUMN)
     .addRange(imageSheet.getRange("A1:B10"))
     .setOption('title', "Image")
     .setPosition(5, 5, 0, 0).asColumnChart().setOption('useFirstColumnAsDomain', true)
     .build();
  imageSheet.insertChart(imageSheetChart);

以下是生成的列图。enter image description here

我想生成下面的图表,但我无法在javascript api中找到相同的选项。基本上,我想通过js api启用电子表格中的“切换行/列”。 enter image description here

0 个答案:

没有答案