Google脚本:setOption chartArea在Google Spreadsheet嵌入式图表生成器中不起作用

时间:2017-12-05 20:04:37

标签: charts google-apps-script spreadsheet

我想在Google电子表格中制​​作图表。图表响应除chartArea之外的所有选项。我希望我的标签显示在V轴的左侧。现在这些都隐藏在chartArea后面。 (照片)

This chart has the labels hidden behind the chartArea

    var chartBuilder = SS.newChart();
chartBuilder.addRange(range)
.setPosition(10, 2, 0, 0)
   .setChartType(Charts.ChartType.BAR)
     .setOption('height', BVhoogte)
   .setOption('width', 720)
   .setOption('isStacked', true)
   .setOption('legend', { position: "bottom" })
.setOption( 'hAxis', {textStyle:{color:"white"}, gridlines:{color:"white"}})
   .setOption('height', 150)
   .setOption('width',720)
   .setOption('colors', ["#6d6f75","#000000", "#dcdee2"])
   .asBarChart().setOption('chartArea',{ left:200, width: 500}) ;
    SS.insertChart(chartBuilder.build());

我已经尝试了

         .asBarChart().setOption('chartArea.left', 100)

但这也不起作用。

1 个答案:

答案 0 :(得分:0)

以下修改怎么样?

来自:

.asBarChart().setOption('chartArea.left', 100)

致:

.asBarChart().setOption('chartArea', {left:'20%', top:'10%', width:"60%", height:"60%"})

关于每个参数,请根据您的设计进行调整。如果这对你没用,我很抱歉。