And*_*zak 4 charts line google-sheets
如何用直线连接 Google Sheets 折线图中缺失的点? https://docs.google.com/spreadsheets/d/1X3BhDyideX-7kyJ9Y-7xvV1naAwWd9eDPfPy3pP94Ic/edit?usp=sharing
谢谢。
Tan*_*ike 12
在您的情况下,检查“绘制空值”怎么样?检查后,可以获得以下结果。
当您想使用Google Apps脚本检查它时,您还可以使用以下脚本。
function myFunction() {
const sheet = SpreadsheetApp.getActiveSheet();
const chart = sheet.getCharts()[0];
const c = chart.modify().setOption("interpolateNulls", "true").build();
sheet.updateChart(c);
}
Run Code Online (Sandbox Code Playgroud)