我公司在Google Spreadsheets中提供了一些报告,并使用了" vAxis.direction"改变垂直轴的方向。当Google最近推出新图表时,所有图表都已恢复,此选项停止运行。
好奇,如果有人有见解让这个再次运作。这是以前使用过的脚本:
function newChart() {
var sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Chart");
var chart = sheet.getCharts()[0];
chart = chart.modify()
.setOption('title', 'this is a title')
.setOption('vAxis.direction', '-1')
.setPosition(4,6,0,0)
.build();
sheet.updateChart(chart);
}
setOption title和setPosition继续工作没有问题,但vAxis.direction什么都不做。
感谢您的帮助!