[visualization-api] I need to open fancy box on click on chart div

2014-05-20 Thread Vikas Sangal
Hi Everyone, I draw a google pie chart successfully but now i want to open a fancy box on click of that chart with the maximize size of chart. Please suggest the best way to open that chart in maximize size... -- You received this message because you are subscribed to the Google Groups Google

[visualization-api] How to setup range on the vAxis?

2014-05-20 Thread Missy
I am trying setup range(i.e. 20, 40, 60, 80...600) for my vAxis on my chart. I have added the min and max value but I am still unable to the get the range interval. Is their a control property I may be missing or I would need to create function to show the vAxis range in 20s.

[visualization-api] Re: Help! Experience adding charts to Google Sites? Getting a failed to load external url jsapi error.

2014-05-20 Thread Romain Vialard
The HMTL box is not compatible with the Google Charts API (in fact the HTML box is compatible with very few javascript libraries). You should create a Google Gadget or store your code somewhere else and display the Chart through an iFrame.

Re: [visualization-api] Re: Chart not rendering

2014-05-20 Thread Isaac Sogunro
Take a look now. How do I round off the score column in a google table chart? The javascript Round() is not working in this instance. On Mon, May 19, 2014 at 10:12 PM, Isaac Sogunro isogu...@gmail.com wrote: Nevermind, I changed the function around On Mon, May 19, 2014 at 10:06 PM, Isaac

Re: [visualization-api] Re: Container height is zero. Expecting a valid height error when I add any chart to spread sheet on Google Drive

2014-05-20 Thread David Hendler
Thanks, Sergey! On Mon, May 19, 2014 at 11:02 AM, 'Sergey Grabkovsky' via Google Visualization API google-visualization-api@googlegroups.com wrote: Hi everyone, you can consider this bug as having been reported to Google. We are now aware of this bug and have a fix ready. It should be

[visualization-api] Google Table Chart Refresh/reset?

2014-05-20 Thread TheInnovator
How do you refresh/reset a google chart table? Enter in the following dates in the first datepicker box (This Month) 10/2013 01/2014 As you will notice, the data for 10/2013 was still a part of the 01/2014 data. How do I refresh the table before rendering on a new date?

[visualization-api] Trying to reduce the space between my filter and my chart in my apps script dashboard

2014-05-20 Thread RosaL
This has got to be easy enough! But I've been fiddling with it and can't make it work. I'm building a simple Apps Script dash and for some reason the Category filter is rendering really far away from the chart. I want it be really close to the actual chart as I've got a lot to fit on a

[visualization-api] Re: How to setup range on the vAxis?

2014-05-20 Thread Andrew Gallant
You can do one of two things, either set the vAxis.gridlines.count or the vAxis.ticks options. vAxis.gridlines.count takes an integer for the number of gridlines to display, which you can set to ((maxValue - minValue) / interval + 1) for a given maxValue, minValue, and interval, assuming that

Re: [visualization-api] Re: Chart not rendering

2014-05-20 Thread Andrew Gallant
Use a NumberFormatter: var formatter = new google.visualization.NumberFormat({pattern: '#.##'}); // show 2 decimal places formatter.format(data, 4); // format column 4 in DataTable data On Tuesday, May 20, 2014 7:48:13 AM UTC-4, TheInnovator wrote: Take a look now. How do I round off the

[visualization-api] Re: Google Table Chart

2014-05-20 Thread Andrew Gallant
Here is your problem: scannedItems = new Object(); scannedItems.Title = $(this).attr(ows_Title); scannedItems.totalPages = 0; scannedItems.totalPassed = 0; scannedItems.totalFailed = 0; scannedItems.score = 0; anArray[i] = scannedItems; lanArray[i] = scannedItems; You are creating an

Re: [visualization-api] Re: Google Table Chart

2014-05-20 Thread Isaac Sogunro
AHHH... I never would have caught that. Thanks a lot. I've been battling this for hours. On Tue, May 20, 2014 at 2:30 PM, Andrew Gallant asgallant...@gmail.comwrote: Here is your problem: scannedItems = new Object(); scannedItems.Title = $(this).attr(ows_Title);

[visualization-api] Color for Timeline Chart with 3 categories

2014-05-20 Thread Khrys
Andrew helps me set colors for category in timeline chart (thanks again o/). I was testing and found a weird behavior. For example, the itens starting with T should always be black because all have the CategoryA, but this isn't happening: http://jsfiddle.net/Khrys/axr7h/5/ Thanks for the

[visualization-api] Re: Color for Timeline Chart with 3 categories

2014-05-20 Thread Andrew Gallant
The Timeline might be sorting the data by start date before assigning colors. When I applied a sort to the DataTable, it looks more correct, but I don't think it's quite right still: http://jsfiddle.net/asgallant/axr7h/6/. If you change the column used to sort, you can clearly see the effect

Re: [visualization-api] Re: Container height is zero. Expecting a valid height error when I add any chart to spread sheet on Google Drive

2014-05-20 Thread Jeff Smith
Thanks for the update. Can you please post in here when the fix is live? Thanks again. -- 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

Re: [visualization-api] Re: Container height is zero. Expecting a valid height error when I add any chart to spread sheet on Google Drive

2014-05-20 Thread Rehan Razi
Thanks Surgey. Hoping for the good news soon about this fix. On Monday, May 19, 2014 9:02:37 PM UTC+5, Sergey wrote: Hi everyone, you can consider this bug as having been reported to Google. We are now aware of this bug and have a fix ready. It should be deployed in a week or two assuming

[visualization-api] How to achieve this kind of complex chart?

2014-05-20 Thread Neil Camara
Hi folks, Can someone please help me how to prepare the data so that the chart gets displayed this way? A jsfiddle or plunkr would be awesome. Mocked data doesn't have to be big. Please see attachment. Any help would be greatly appreciated! Thanks, :) Neil -- You received this message

[visualization-api] Re: How to achieve this kind of complex chart?

2014-05-20 Thread Neil Camara
or if it's not possible, what type of chart is ideal for that kind of data? On Wednesday, May 21, 2014 12:25:48 AM UTC-5, Neil Camara wrote: Hi folks, Can someone please help me how to prepare the data so that the chart gets displayed this way? A jsfiddle or plunkr would be awesome. Mocked