[visualization-api] calculated sort column?

2017-01-03 Thread Suzanne Paley
I have an underlying DataTable with discrete x-axis categories and multiple series. I'm using DataViews on top of that to generate column charts, so that users can select which series to display (including calculated series that may aggregate multiple source series in various ways). I want to

[visualization-api] google chart wordtree data load via ajax chart.draw compress on subsequence call

2017-01-03 Thread robert ngo
this is my js TSCORPE TSCORPG TSCORPW function db_selected(){ var sname = $("#selectdb option:selected").html(); var thiscall =cmdbservices +'110='+sname; var jsonData = $.ajax({ url: thiscall, data: {tag:'db_user_by_instance'}, dataType: "json", async: false }).responseText;

Re: [visualization-api] How To: Adding a CSS Class to the Table: Customized Table Example Documentation ?

2017-01-03 Thread Ron Royston
Thanks for the reply. Vanilla CSS with !important don't work. I figured it out with a little drive and fresh air. I added a ready handler that looks for my div, then selects the first table child, then sets the CSS margin via JS. Seems like this could be documented. However, being forced

Re: [visualization-api] How To: Adding a CSS Class to the Table: Customized Table Example Documentation ?

2017-01-03 Thread 'Daniel LaLiberte' via Google Visualization API
A Table chart is a particular way of using HTML tables to render a datatable, though they might be implemented another way some day. But this is irrelevant to the table used to contain a set of Gauges. If you want to modify the css for the table that contains a Gauge chart, that should be doable

[visualization-api] How To: Adding a CSS Class to the Table: Customized Table Example Documentation ?

2017-01-03 Thread Ron Royston
The Customized Table Example talks about passing in a cssClassNames object to the .draw() method. However, the documented cssClassNames

Re: [visualization-api] Dual Y- axis Chart

2017-01-03 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Neha, You are mixing the classic chart with the material chart options. The material chart doesn't support combining bars and lines, so you will have to stick with the classic charts and specify the left of right sides with the series 'targetAxisIndex' option. series: { 0:

Re: [visualization-api] Google chart with changeratefilter and hide lines by clicking on legend

2017-01-03 Thread 'Daniel LaLiberte' via Google Visualization API
Sorry, we don't have a way of dealing with the gaps in domain data yet. The best you could do is to replace the dates with integers, and then change the display values to the corresponding date. But this won't work very well with a ChartRangeFilter because you would also have to compute all the

[visualization-api] Google chart with changeratefilter and hide lines by clicking on legend

2017-01-03 Thread Sander Messiaen
Hello everyone I made an google line chart with an chartrangefilter and it works really fine but i have one question. I put some info in the chart that get from a database that contains some temperatures with there time of measurement. But now there is big gap where i didn't get something

Re: [visualization-api] Data 'Access Denied' - Private Google Sheet

2017-01-03 Thread 'Daniel LaLiberte' via Google Visualization API
At this time, the only option to avoid use of OAuth credentials is to make the spreadsheet public. It would be convenient if there were more options, such as 'My Organization Only', and I would not be surprised if the docs folks are working on that, but I don't really know. On Tue, Jan 3, 2017

[visualization-api] Data 'Access Denied' - Private Google Sheet

2017-01-03 Thread HB
Hi, I'm using the Visualization API and i can get it working fine when its all public and my web-app shows fine with no problems. However, the data i'm trying to make available within an organisation is private so i thought maybe change the to 'My Organisation Only - Can Edit' This is not

[visualization-api] Dual Y- axis Chart

2017-01-03 Thread Neha Wattamwar
Hi, I want to display a chart where one Set of values is used plotting left Y-axis and the other set of values is marked on the right-hand Y-axis. Attaching a mockup. Could someone suggest how to plot it. This the code am trying for the required mockup.