Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using Google Docs and Google Apps Scripts to make some auto generated report for our sprint.

I would like to add a Chart to my Sheet, and everything works fine with the following code :

    var lChartBuilder = SpreadsheetApp.getActiveSheet().newChart();
    lChartBuilder.addRange(SpreadsheetApp.getActive().getRange("Tasks!C39:S40"));
    lChartBuilder.setOption("title", "Task Burndown");

    var lChart = lChartBuilder.asLineChart().build();
    SpreadsheetApp.getActiveSheet().insertChart(lChart);

But my series are organized horizontally, not vertically. In the editor I have seen the option "Switch rows / columns" and the other option "Use column C for labels" I have tried many options (like lChartBuilder.setOption("reverseCategories", true); or lChartBuilder.setOption("isStacked", true);), but they seem all related to the last tab, I fear, not the Start tab.

So, is there a way (other than transposing my data) to do that or must I fire the chart editor manually to fix this each time I generate it ?

Bonus question : how do I then set (through Google Apps Script as well) that the first row/column is a header and serves as legend ?

Thank you,

Joël.

share|improve this question

1 Answer

up vote 1 down vote accepted

For an embedded chart, you will need to transpose your data, because the embedded chart uses spreadsheet data, and does not support transposition itself. However, you can handle this programmatically, and the transpose operation itself is simple.

In the code below, I'm assuming existence of a sheet named "Scratch" that will be used to store the working copy of the transposed data. You can create and then hide this sheet, so that it's not in the way.

// Uses 2D Arrays Library, see https://sites.google.com/site/scriptsexamples/custom-methods/2d-arrays-library

function buildChart() {
  var taskSheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Tasks");
  var lChartBuilder = taskSheet.newChart(); taskSheet.removeChart(chart)
  var srcData = taskSheet.getRange("Tasks!C39:S40").getValues();

  // Transpose the table (using 2D Array Library)
  var scratchData = ArrayLib.transpose(srcData);

  var numRows = scratchData.length;
  var numCols = scratchData[0].length; // assume all rows are same width

  // Write scratch values to scratch sheet.
  var scratchSheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Scratch");
  scratchSheet.getRange(1, 1, numRows, numCols).setValues( scratchData );
  SpreadsheetApp.flush();

  lChartBuilder.addRange(scratchSheet.getDataRange());
  lChartBuilder.setOption("title", "Task Burndown");

  var lChart = lChartBuilder.asLineChart().setPosition(1, 1, 1, 1).build();
  taskSheet.insertChart(lChart);
};

For the bonus... Having the data formatted this way ensures the first row/column is a header and serves as legend.

Resulting Chart

Now, you've still got some problems to solve.

  • This code creates a new chart every time it runs, but you probably want to modify it instead. (Instead, you'll want to update the transposed data, and modify the chart to pick up the new range, if it changed.)
  • The X axis doesn't show all the task names - you may be able to control that.

I hope that helps!

share|improve this answer
First, thank you for having taken the time for a such a detailed answer. I did not want to transpose my data, but since it solved the legend problem, I will proceed like that. – glatapoui Jan 16 at 4:38
There just isn't any way around that with the current incarnation of Charts - you've got to massage your data youself. Inserting a widget with a different charting library could work, but widget support for Sheets gets dropped this month. Fortunately, I had similar code already, so it was less work than it looks like. You should look at some of ghe other filtering capabilities in ArryLib, you can do a lot with it. Cheers! – Mogsdad Jan 16 at 15:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.