Renvoyez les données contenues dans cet objet sous forme de DataTable.
Documentation détaillée
getDataTable()
Renvoyez les données contenues dans cet objet sous forme de DataTable.
//OpensthespreadsheetfilebyitsID.IfyoucreatedyourscriptfromaGoogleSheetsfile,//useSpreadsheetApp.getActiveSpreadsheet().//TODO(developer):ReplacetheIDwithyourown.constss=SpreadsheetApp.openById('abc123456');//GetsSheet1byitsname.constsheet=ss.getSheetByName('Sheet1');//GetstherangeA1:B7onSheet1.constrange=sheet.getRange('A1:B7');//GetstherangeA1:B7asadatatable.Thevaluesineachcolumnmustbeofthesametype.constdatatable=range.getDataTable();//UsestheChartsservicetobuildabarchartfromthedatatable.//Thisdoesn't build an embedded chart. To do that, use sheet.newChart().addRange() instead.constchart=Charts.newBarChart().setDataTable(datatable).setOption('title','Your Chart Title Here').build();
Renvois
DataTable : données sous forme de tableau de données.
Sauf indication contraire, le contenu de cette page est régi par une licence Creative Commons Attribution 4.0, et les échantillons de code sont régis par une licence Apache 2.0. Pour en savoir plus, consultez les Règles du site Google Developers. Java est une marque déposée d'Oracle et/ou de ses sociétés affiliées.
Dernière mise à jour le 2024/09/10 (UTC).
[[["Facile à comprendre","easyToUnderstand","thumb-up"],["J'ai pu résoudre mon problème","solvedMyProblem","thumb-up"],["Autre","otherUp","thumb-up"]],[["Il n'y a pas l'information dont j'ai besoin","missingTheInformationINeed","thumb-down"],["Trop compliqué/Trop d'étapes","tooComplicatedTooManySteps","thumb-down"],["Obsolète","outOfDate","thumb-down"],["Problème de traduction","translationIssue","thumb-down"],["Mauvais exemple/Erreur de code","samplesCodeIssue","thumb-down"],["Autre","otherDown","thumb-down"]],["Dernière mise à jour le 2024/09/10 (UTC)."],[[["`DataTableSource` is an interface for objects that can present their data as a `DataTable` for use in Google Charts."],["Classes such as `DataTable` and `Range` implement the `DataTableSource` interface."],["The primary method of `DataTableSource` is `getDataTable()`, which returns the object's data formatted as a `DataTable`."],["You can access data from spreadsheet ranges and use it to create charts using the `DataTableSource` and the Charts service."]]],[]]