Hi to everyone,
I am pretty new to visualization topics so I hope that this is the right
place to ask my question.
Im am working with google apps acript on Goolge spreadsheet to create a
simple tree object as a GUI.
*function doGet(e) { var app =
UiApp.createApplication().setTitle("A").setWidth('1000').setHeight('600');
var tree = app.createTree().setAnimationEnabled(true); var item =
app.createTreeItem("B"); tree.addItem(item); var scrollPanel =
app.createScrollPanel().setSize('980', '580').setStyleAttribute('border',
'1px solid black'); scrollPanel.add(tree); app.add(scrollPanel); var
spreadsheet = SpreadsheetApp.getActiveSpreadsheet();
spreadsheet.show(app);} *
I would like to save this GUI as an image (png, jpg, pdf...) so that I
could be able to put it in a report.
I would also like to embed the GUI in the spreadsheet so that I could be
able to print it.
Can anyone help me?
--
You received this message because you are subscribed to the Google Groups
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-visualization-api.
For more options, visit https://groups.google.com/groups/opt_out.