[visualization-api] Re: Drill down functionality for column charts

2014-07-30 Thread Rk MooRthy Rajendran
Hi Andrew, Its working fine. Thank you very much for your valuable reply... -Rk.MooRthy On Tuesday, 29 July 2014 18:14:59 UTC+5:30, Andrew Gallant wrote: You should be able to replicate that chart. Use a ComboChart https://developers.google.com/chart/interactive/docs/gallery/combochart

Re: [visualization-api] Visualization Playground Broken Link

2014-07-30 Thread Visual1zer
Thanks for the update Cheers, On Tuesday, 29 July 2014 14:22:07 UTC+1, orw...@google.com wrote: Yep, we're investigating a fix. Jon On Tue, Jul 29, 2014 at 6:25 AM, Visual1zer flas...@gmail.com javascript: wrote: Hi all, the Visualization Link appears to be broken:

Re: [visualization-api] 404 error on Visualization Playground

2014-07-30 Thread Siddharth sreelal
Still getting a 404 error when trying to view the Playground. On Tuesday, July 29, 2014 4:37:14 AM UTC+5:30, orw...@google.com wrote: Investigating... Jon On Mon, Jul 28, 2014 at 7:01 PM, James Bowler jamesm...@gmail.com javascript: wrote: Getting a 404 when trying to view the

Re: [visualization-api] 404 error on Visualization Playground

2014-07-30 Thread 'Jon Orwant' via Google Visualization API
The playground is down for the count, alas. Security reasons. Jon On Wed, Jul 30, 2014 at 8:05 AM, Siddharth sreelal siddharth.sree...@gmail.com wrote: Still getting a 404 error when trying to view the Playground. On Tuesday, July 29, 2014 4:37:14 AM UTC+5:30, orw...@google.com wrote:

Re: [visualization-api] Visualization Playground Broken Link

2014-07-30 Thread 'Jon Orwant' via Google Visualization API
The playground has been taken offline for security reasons. Sorry, Jon On Wed, Jul 30, 2014 at 4:37 AM, Visual1zer flashb...@gmail.com wrote: Thanks for the update Cheers, On Tuesday, 29 July 2014 14:22:07 UTC+1, orw...@google.com wrote: Yep, we're investigating a fix. Jon On

Re: [visualization-api] Visualization Playground Broken Link

2014-07-30 Thread Steve Webster
Jon, how soon could the sample code be made available for at least all the charts? On Wednesday, July 30, 2014 9:55:52 AM UTC-4, orw...@google.com wrote: The playground has been taken offline for security reasons. Sorry, Jon On Wed, Jul 30, 2014 at 4:37 AM, Visual1zer

[visualization-api] Filter table results with a drop down menu

2014-07-30 Thread Ryan
I am pretty limited in sql and programming knowledge but i was able to query a google spreadsheet with code i found. Mostly from this blog http://katiepiatt.blogspot.com/2011/05/make-searchable-online-database-or-i.html I customized it a bit to fit my needs. What I would like to add, and have

[visualization-api] Replace Playground with Code Examples

2014-07-30 Thread Steve Webster
Since the Charts Playground is no longer available due to security concerns, could you make all the code examples available. Perhaps copy the playground source, remove the results section (at bottom) thereby removing the security concern (assumption), and just the left column list and right

Re: [visualization-api] Replace Playground with Code Examples

2014-07-30 Thread 'Jon Orwant' via Google Visualization API
That's a good idea, and we're exploring options. Jon On Wed, Jul 30, 2014 at 11:54 AM, Steve Webster swebste...@gmail.com wrote: Since the Charts Playground is no longer available due to security concerns, could you make all the code examples available. Perhaps copy the playground source,

[visualization-api] Charts Timeline error

2014-07-30 Thread Jose gerardo Renteria Valdespino
https://lh4.googleusercontent.com/-JYu-12WL984/U9lCX_sr3FI/AIQ/2tU7tC5tGGU/s1600/Sin+t%C3%ADtulo.png Los datos desplegados en la gráfica de línea de tiempo y desplegados, no coinciden con los datos cargados en el script. Alguien tiene una idea de como arreglarlo -- You received

Re: [visualization-api] 404 error on Visualization Playground

2014-07-30 Thread James Bowler
I also noticed the links were removed .. Has it been removed permanently? On Wednesday, July 30, 2014 6:54:38 AM UTC-7, orw...@google.com wrote: The playground is down for the count, alas. Security reasons. Jon On Wed, Jul 30, 2014 at 8:05 AM, Siddharth sreelal siddhart...@gmail.com

Re: [visualization-api] 404 error on Visualization Playground

2014-07-30 Thread James Bowler
I also noticed the links were removed .. Has it been removed permanently? -- 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

[visualization-api] Re: 404 error on Visualization Playground

2014-07-30 Thread Anthony Stowe
When will the playground be back up? this was way to cool to remove.. On Monday, July 28, 2014 6:01:56 PM UTC-5, James Bowler wrote: Getting a 404 when trying to view the Playground, see https://code.google.com/apis/ajax/playground/?type=visualization#area_chart -- You received this

[visualization-api] how to do ColorFormat for cells with true/false value

2014-07-30 Thread Rashed Islam
Hi, As shown in the attached file, two columns in my table will have true/false values. I want to do ColorFormat, so that all the false cells will get red background. I tried the one shown in the attached code, but it's not working. Any suggestion? Thanks. -- You received this message

[visualization-api] Re: formatting time on the tooltip

2014-07-30 Thread Andrew Gallant
You need to format your data to get the tooltips to display properly. If you are using a date or datetime data type, you can format it using a DateFormatter: var formatter = new google.visualization.DateFormat({pattern: 'h:mm aa'}); formatter.format(data, 0); If you are using a timeofday data

[visualization-api] Re: Filter table results with a drop down menu

2014-07-30 Thread Andrew Gallant
From the sound of things, I think you want to use a CategoryFilter. Here's some example javascript you can use to get started: function drawVisualization() { var query = new google.visualization.Query('http://spreadsheets.google.com/tq?key=**pub=1');

[visualization-api] Re: Charts Timeline error

2014-07-30 Thread Andrew Gallant
Those dates are correct. Javascript uses a zero-based index for months, so all of the month numbers are 1 lower than most date systems (ie. January is 0, February is 1, March is 2, etc...). On Wednesday, July 30, 2014 3:07:23 PM UTC-4, Jose gerardo Renteria Valdespino wrote:

[visualization-api] Re: how to do ColorFormat for cells with true/false value

2014-07-30 Thread Andrew Gallant
The ColorFormatter only works on number data type, so you can't use it with your boolean values, but you can emulate its effect. The ColorFormatter changes the style property of the DataTable cells, which the Table visualization assigns as the style attribute of the td's, so all you have to

[visualization-api] Re: I'd like to commission someone to write a fairly basic line chart. Interested?

2014-07-30 Thread 66splitbus
Andrew, wow, thanks again, Im dying to see this working! I changed the path per your instructions but cant seem to get the page to render properly. I have it in the root dir of my web server but if I open a browser and point to that file it comes up as a white page. If I view the source I

[visualization-api] Re: Drill down functionality for column charts

2014-07-30 Thread Rk MooRthy Rajendran
Hi Andrew, I have to plot charts using Google API with web service data, The web service result is in Json format. So need to convert the Json format into Multi dimensional array for render the chart. This is my web service data : [{categories1: [TOTAL,GROUND FLOOR-GOLD,FIRST