Google 折线图:连接缺失点
Google Sheets Line Chart: connect missing points
如何用直线连接 Google Sheets 折线图中的缺失点?
https://docs.google.com/spreadsheets/d/1X3BhDyideX-7kyJ9Y-7xvV1naAwWd9eDPfPy3pP94Ic/edit?usp=sharing
谢谢。
在您的情况下,如何检查“绘制空值”?勾选此项后,可得到如下结果
当您想使用 Google Apps 脚本检查时,您也可以使用以下脚本。
function myFunction() {
const sheet = SpreadsheetApp.getActiveSheet();
const chart = sheet.getCharts()[0];
const c = chart.modify().setOption("interpolateNulls", "true").build();
sheet.updateChart(c);
}
参考:
如何用直线连接 Google Sheets 折线图中的缺失点? https://docs.google.com/spreadsheets/d/1X3BhDyideX-7kyJ9Y-7xvV1naAwWd9eDPfPy3pP94Ic/edit?usp=sharing
谢谢。
在您的情况下,如何检查“绘制空值”?勾选此项后,可得到如下结果
当您想使用 Google Apps 脚本检查时,您也可以使用以下脚本。
function myFunction() {
const sheet = SpreadsheetApp.getActiveSheet();
const chart = sheet.getCharts()[0];
const c = chart.modify().setOption("interpolateNulls", "true").build();
sheet.updateChart(c);
}