Re: [visualization-api] Google Charts Down

2014-06-11 Thread 'Jon Orwant' via Google Visualization API
Right. Now we'll put our heads together and figure out why. Jon On Tue, Jun 10, 2014 at 10:31 PM, Anthony Milano apmil...@gmail.com wrote: Yes, everything is back to normal now..thanks. It must have been while you were doing the update? On Tue, Jun 10, 2014 at 5:26 PM, 'Jon Orwant' via

[visualization-api] Geochart Marker HTML Tooltips

2014-06-11 Thread IK
Hi, I am trying to get HTML tooltips working on markers in SELECTION mode but it is showing text. Here is a fiddle of what i am talking about http://fiddle.jshell.net/2N2Xr/1/ You can see that if you hover over the marker the HTML works in the middle map, and on the bottom if you click it

[visualization-api] Google drill down bubble chart

2014-06-11 Thread Ananya Ojha
!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Strict//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd; html xmlns=http://www.w3.org/1999/xhtml; head meta http-equiv=content-type content=text/html; charset=utf-8/ title Google Visualization API Sample /title script

[visualization-api] Geochart: Highlight effect of 'regions' style

2014-06-11 Thread 'Sergey Grabkovsky' via Google Visualization API
The option enableRegionInteractivity should do what you want. On Tue Jun 10 2014 at 10:43:06 PM, mc1 mca.oli...@gmail.com wrote: Hello, I'm currently using the 'markers' style to render a geochart. I noticed that this style doesn't provide the highlighting effect that 'regions' does when

Re: [visualization-api] Google drill down bubble chart

2014-06-11 Thread Ananya
Please do the needful If any thing needs to be changed, please change. I'm new to google chart. So, not getting how to do this. Thank you On Wed, Jun 11, 2014 at 6:44 PM, Ananya Ojha ojhaananya.o...@gmail.com wrote: !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Strict//EN

[visualization-api] Geochart Marker HTML Tooltips

2014-06-11 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi, it appears you found a bug. I'll look into it and try to get it fixed for the next release. On Wed Jun 11 2014 at 9:04:42 AM, IK ishank...@gmail.com wrote: Hi, I am trying to get HTML tooltips working on markers in SELECTION mode but it is showing text. Here is a fiddle of what i am

[visualization-api] Uncaught object error - am I running into a Chart API time or length limit

2014-06-11 Thread jaywuns
I am writing a php/JS script to populate a google charts graph from a MySQL database. The structure of the database is unfortunate but it is not mine and I am stuck with it. The chart I am having problems with is a Year to Date representation of financial information. It renders a bar chart of

Re: [visualization-api] b[le] is not a function -- issue

2014-06-11 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Misbah, The code you included is not complete enough to tell why you are seeing the error that you reported, but I can see one potential problem just by inspection. You are using a categoryPicker that is not defined. Maybe you have it defined outside of this drawVisualization function, in

[visualization-api] Uncaught Object Error. Is there a time or length limit somewhere in the Charts API?

2014-06-11 Thread jaywuns
I am writing a php/JS script to populate a google charts graph from a MySQL database. The structure of the database is unfortunate but it is not mine and I am stuck with it. The chart I am having problems with is a Year to Date representation of financial information. It renders a bar chart of

Re: [visualization-api] b[le] is not a function -- issue

2014-06-11 Thread ma
Thank you for your reply back. This is my entire code below. I am using the table event handler from the following link -- http://jsfiddle.net/asgallant/FRz59/8/ function drawVisualization(dataValues, chartTitle, columnNames, categoryCaption) { if (dataValues.length 1)

Re: [visualization-api] b[le] is not a function -- issue

2014-06-11 Thread 'Daniel LaLiberte' via Google Visualization API
Thanks for posting your code, but this can't be your entire code because the call of the drawVisualization must include arguments that provide the data and columns. I tried to make up some data that looks like what you expect, and I don't see the problem you are reporting, so it might be there is

[visualization-api] Adding text to max / min on geochart legend

2014-06-11 Thread mc1
Does the geochart support adding units to the legend? I read in older posts that this would need to created in html from scratch by building a new legend (and voiding the default geochart legend). Is this still the case with the latest updates to google visualizations? Context: In my

Re: [visualization-api] Geochart Marker HTML Tooltips

2014-06-11 Thread IK
Im trying to get this implemented soon, with what I am doing, just seems like a very small issue with probably isHTML not included in this instance. Any ETA on when this will be available. I would very much appropriate it if it can be done soon. And happy to help with finding bugs. -- You

[visualization-api] Re: Legend box

2014-06-11 Thread Andrew Gallant
Try using the legend.numberFormat option. It takes an ICU pattern http://icu-project.org/apiref/icu4c/classDecimalFormat.html#_details, like this: legend: { numberFormat: '#,### kg' } On Tuesday, June 10, 2014 10:24:14 PM UTC-4, mc1 wrote: Andrew - do you know if the charts broadly

[visualization-api] Re: Uncaught Object Error. Is there a time or length limit somewhere in the Charts API?

2014-06-11 Thread Andrew Gallant
I think it is unlikely that you encountered any limits in the Visualization API. I would check your query first to make sure it is returning the correct data, and then check over your PHP code to make sure it is working properly. Incidentally, your query looks like it could use some help with