Tagged Questions
0
votes
1answer
18 views
TableChart in GAS, what are the different options for setOptions()
I can't find an exhaustive list.
I'm trying to set the font size on a TableChart, but can't figure out how or if it's even possible. Searching the internet yielded no source of information on the ...
0
votes
1answer
36 views
google chart script for time table/bar
How to write a code to draw google chart of the time bar. The bar has a start point and the length, and a function like TimeBar(start time, duration). Have looked for the sample codes on Google, but ...
0
votes
1answer
62 views
How can I call Google Charts API from UrlFetch service in Google App Script?
I'm trying to write sort of a proxy to be able to query a Google Spreadsheet with Google Chart API without giving rights directly to the spreadsheet to people accessing the visualization.
In order to ...
0
votes
1answer
34 views
Combo Charts in Google Sites using Google Sites
Is there a way to create Combo charts using apps script? I need to create a chart using google sites, but I havent found the way.
Many thanks in advance.
1
vote
2answers
100 views
google.visualization chart - DataTable in google site
I'm not understand how to implement chart in Google site.
My goal is to show spreadsheet. I'm choose to use the charts from google.visualization.DataTable with dashboard.
This is my steps:
1) Create ...
0
votes
0answers
115 views
Use gauge chart in Google Apps Script
I am building a web app with Google Apps Script, and now need to implement a Gauge-meter from the Google Charts API into the web app.
But I'm not sure how to achieve this, as it is not implemented in ...
1
vote
1answer
102 views
Google Apps Script Chart Use row 1 as headers
I have the following chart:
var ss = ... // get sheet
var chart = ss.newChart().asLineChart();
chart.setTitle("My Title");
chart.addRange(dataSheet.getRange(1, 1, ss.getLastRow(), 4));
...
1
vote
2answers
101 views
Can I access the selected data in a Chart
I have created a User Interface with Google Apps Script that shows data in Charts object like TableChart and PieChart.
Charts objects allow the user to select a section of the pie and multiple lines ...
0
votes
1answer
223 views
Google Apps Scripts : switch rows and columns in EmbeddedChart
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 ...
0
votes
0answers
139 views
Grouping using COUNT and SUM in GAS Dashboard using ScriptDb
BACKGROUND
I am using GAS + ScriptDb + Chart Services/Tools + Google Sites to create and display a dashboard of my data (similar to what is described here) that I have stored in ScriptDb.
OBJECTIVE
...
0
votes
3answers
202 views
Charts and Object Type Error
New to the Chart Service and was hoping to elaborate more on this post Google charts object error
I'm running into the same "object type does not match column type" problem, but I've checked the ...
-1
votes
1answer
103 views
Chart and dashboard data refresh in Ui apps
When you change the values that a chart is tied to in Sheets the chart automatically updates / refreshes with the new data. Is there a way to replicate this behavior with Ui apps that are displaying ...
1
vote
1answer
266 views
Sort TableChart with “Release Number” column
Given a dataTable that includes a column of "Release Numbers", how can the resulting TableChart be sorted correctly on that column?
These are examples of the alphanumeric strings that represent ...
1
vote
0answers
242 views
Google app script - Chart Service / TableChart: column width & row height
How to set width of a TableChart is explained in Google app script - Chart Service: table size, column format.
What I need to do is control the absolute or relative sizes of columns and rows of the ...
0
votes
0answers
61 views
Tablechartbuilder Column format option to customize dates
The data for my tablechart is pulled from a spreadsheet. The date column is formatted using mm/dd/yyy, but the GAS chart dashboard generates dates that include the time (see included image below). Is ...
0
votes
0answers
82 views
Can the Axis Labels be increased in a GAS Chart?
I have a ColumnChart but the axis only shows 4 dates for the date range. I set the width of the report to 2000, and still only 4 dates. Is there a way to display every date?
here is my code:
...
0
votes
1answer
108 views
Charts series: One column for each serie?
I have a dataTable like this one:
**Col1 (NUMBER) Col2 (STRING) Col3 (NUMBER)
21 A 450
12 B 600**
Col1 represents days. I want to make a line ...
1
vote
1answer
819 views
Filter date range on a chart in Google Apps Script
I have a spreadsheet with monthly data going back nearly a decade and am creating a dashboard for this and other sheets like it.
I am attempting to filter the data table for a chart showing the last ...
1
vote
1answer
150 views
Dynamically addRange to Google EmbeddedChart
I want to dynamically add ranges to a new EmbeddedChartBuilder but I'm getting this error:
"in dashOutput - line: 605, error: InternalError: Cannot find method insertChart($Proxy843)."
Here is code ...
2
votes
1answer
895 views
Google app script - Chart Service: table size, column format
I use the google Chart Service to create a table in google app script for my web app.
Now I have 2 problems:
When i add more rows and columns, The columns width is getting smaller until the point ...
0
votes
1answer
164 views
Apps script binding filter control to chart that uses setDataSourceUrl
I am using Charts service in Google Apps Script. With issue 1304 fixed, I am able to bind my charts to a Google Spreadsheet using setDataSourceUrl. In this way, I was able to embed SQL-like queries in ...
0
votes
1answer
365 views
Google Spreadsheet Chart to show Range of Dates
I am constructing a chart to show stock values from a Google Spreadsheet macro, using Google App Script. I read the spreadsheet values into Charts.newDataTable(), then construct a filter with ...
0
votes
2answers
450 views
How to update or manage Annotated Time Line chart through google spreadsheet app's custom code?
I am working on a spreadsheet of me at google spreadsheet. You can visit it here.
If you visit the page you will see 2 charts at the current sheet (Graph Input). The first one is the embedded one ...
2
votes
3answers
365 views
Can we use Google Chart Tools with Google Script HtmlService
I would like to use Google Chart Tools in Google Scripts using the HtmlService.
But I do not know if caja will allow to inject script to show a chart.
My first tests give me blank pages.
Does anyone ...
1
vote
1answer
197 views
spreadsheet embeded chart chartType error
I am trying to use the embeddedchart in the Spreadsheet Google Apps Script.
var chartresult = newsheet.newChart()
.addRange(plotdata)
.setChartType(Charts.ChartType.SCATTER)
...