引用https://developers.google.com/apps-script/reference/charts/chart-options可以对get(option)对象使用方法Class ChartOptions

使用此代码:

var allChartOptions = gcharts_LineChart.getOptions();
console.log(allChartOptions);


我得到日志:

Object { title: "average", width: 1200, height: 500, LineSliceText: "value", legend: "bottom", trendlines: 0 }


现在是我的问题:不幸的是,我不能使用get(option)方法:

码:

var allChartOptions = gcharts_LineChart.getOptions();
console.log(allChartOptions.get('title'));


输出:

TypeError: allChartOptions.get is not a function


为什么不起作用?

最佳答案

看来getOptions()返回一个对象,
使用属性,您可以直接访问...

var allChartOptions = gcharts_LineChart.getOptions();
console.log(allChartOptions.title);

09-25 16:03