Is it possible to create a chart in a spreadsheet with data that is not actually present in the sheet (calculated data)?
So instead of
chartBuilder.addRange(sheet.getRange("A2:A5"))
I want something like (pseudo code)
chartBuilder.addRange({0,1,2,8,15,35})
I guess I need to create a Range with custom data, but I couldn't find a solution in the documentation.