[visualization-api] not show title on GEOCHART

2015-03-09 Thread Sathiya Seelan
not show title on GEOCHART -- 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 google-visualization-api+unsubscr...@googlegroups.com. To post to this

[visualization-api] Ability to toggle chart options in dashboard

2015-03-09 Thread dunbar . nick
Dear Dan, Sergey the Google team, I am trying to find a way to allow chart users to toggle chart options in dashboards. For example, suppose I define an AreaChart in ChartWrapper, with the option 'isStacked: true'. I would like a category filter control that allowed me to change that option

Re: [visualization-api] not show title on GEOCHART

2015-03-09 Thread 'Jon Orwant' via Google Visualization API
Hi Sathiya, \the Google GeoChart doesn't support the title option at the moment, but you can put in your own with HTML. Jon On Mon, Mar 9, 2015 at 7:53 AM, Sathiya Seelan i.sathiya...@gmail.com wrote: not show title on GEOCHART -- You received this message because you are subscribed to the

Re: [visualization-api] Re: Uncaught Error: Type mismatch. Value /Date(1409626800000)/ does not match type date in column index 0

2015-03-09 Thread 'Sergey Grabkovsky' via Google Visualization API
I would recommend that you change the database itself either to store real dates or numbers. If this is not possible, you could use a regular expression to get the number out. In your case, that regexp would look something like /Date\((\d+)\)/. Here's an example of using that:

[visualization-api] Change color on element

2015-03-09 Thread Ricardo Costa
I am starting with Google chart and I have allready many thinga but I need to change the color of an element e I cant get. Follow my code: script type=text/javascript src=https://www.google.com/jsapi;/script script type=text/javascript google.load('visualization', '1', {packages:

Re: [visualization-api] Tips to get better performance?

2015-03-09 Thread Dale Cox
Hi Daniel, You can check out the page here - http://dalecox.github.io/DNA_Analysis/samples/SkewChart.html http://dalecox.github.io/DNA_Analysis/samples/SkewChart.html I haven't cross browser tested, so for best results I would recommend running in Chrome. You'll need this data set -

[visualization-api] Turn off inner box highlight on click

2015-03-09 Thread mhjp
Just did my very first Google bar chart. Pretty straight forward, except that I can't figure out how to inhibit highlighting if a user clicks on one of the bars. Currently, a white inner box appears if I click on it. How do I inhibit this? At this point, I don't intend to provide for any

Re: [visualization-api] Re: Uncaught Error: Type mismatch. Value /Date(1409626800000)/ does not match type date in column index 0

2015-03-09 Thread 'Sergey Grabkovsky' via Google Visualization API
It sounds like a lot of the questions you have are unrelated to Google Charts, and have more to do with basic JavaScript programming. You should consult a JavaScript book or tutorial, or ask this question on a beginner forum, like StackOverflow. Hope this helps, - Sergey On Mon, Mar 9, 2015 at

Re: [visualization-api] Tips to get better performance?

2015-03-09 Thread 'Daniel LaLiberte' via Google Visualization API
Thanks for providing your code and data. It really helps us to find out what Google Charts users are doing. Since you are now generating the chart asynchronously, you need to wait for the 'ready' event to find out when the chart is done drawing. It appears we are generating tooltip text even if

[visualization-api] Re: Uncaught Error: Type mismatch. Value /Date(1409626800000)/ does not match type date in column index 0

2015-03-09 Thread Wilson Rogério Braun
* Uncaught SyntaxError: Unexpected token ;* *script type=text/javascriptgoogle.load('visualization', '1.1', { 'packages': ['corechart'] }); google.setOnLoadCallback(drawStuff); function drawStuff() { $.get('/Programa_Nutricao/Avaliacao/EvolucaoPeso', {};

Re: [visualization-api] Google charts not showing in IE11 (setImmediate issue)

2015-03-09 Thread 'Daniel LaLiberte' via Google Visualization API
Sorry for the delay. We have a difficult time testing on the Windows platform, due to security restrictions. I was attempting to test the following, but got bogged down in irrelevant hassles. So rather than delaying, I'll have to rely on you doing some more work. If it works out, you'll have

Re: [visualization-api] Google charts not showing in IE11 (setImmediate issue)

2015-03-09 Thread 'Daniel LaLiberte' via Google Visualization API
Oops.. messed that up by Sending too soon. This is the part of the setImmediate.js code you need to remove: if (global.setImmediate) { return; } On Mon, Mar 9, 2015 at 2:58 PM, Daniel LaLiberte dlalibe...@google.com wrote: Sorry for the delay. We have a difficult time testing on the

Re: [visualization-api] Re: Uncaught Error: Type mismatch. Value /Date(1409626800000)/ does not match type date in column index 0

2015-03-09 Thread 'Sergey Grabkovsky' via Google Visualization API
I'm not sure what you were trying to do here, so I don't have any suggestions for what to do instead, but this is the line where the error is: *$.get('/Programa_Nutricao/Avaliacao/EvolucaoPeso', {};* On Mon, Mar 9, 2015 at 3:08 PM Wilson Rogério Braun braun0...@gmail.com wrote: *

Re: [visualization-api] Re: Uncaught Error: Type mismatch. Value /Date(1409626800000)/ does not match type date in column index 0

2015-03-09 Thread Wilson Rogério Braun
*Uncaught ReferenceError: data is not definedAvaliacao:193 drawStuff* google.load('visualization', '1.1', { 'packages': ['corechart'] }); google.setOnLoadCallback(drawStuff); $.get('/Programa_Nutricao/Avaliacao/EvolucaoPeso', {}); function drawStuff() { . Em