Re: [visualization-api] Getting a RangeError: Maximum call stack size exceeded javascript error when attempting to create a DataTable with a large number of rows

2014-06-10 Thread Michael Shen
Hi, Riccardo and Yolanda I am hitting the similar issue . I have a very very large array named tmp (the array contains about 2,700,000 elements ) The page hang then crash. Would you please help me out , I am stuck at this for about 1 week :( Would you mind if taking a look my codes ?

[visualization-api] How to create event to show table's recent date data?

2014-06-10 Thread ali
Hi, How can I create event, which can render table's only showing yesterday's date data (recent date only - 9June). I have started the function and but little unclear about the coding logic. Any guide would be greatly appreciated. Thanks. function drawVisualization() {

[visualization-api] Multiple google pie charts not working in IE8.

2014-06-10 Thread Amol Bhosle
Hello , I've used google pie charts. The replicate code which will reproduce error in IE8 is as follows: success:function(data){ data2 =data.split(,); aP=parseFloat(trim(data2[2])); bP=parseFloat(trim(data2[3])); cP=parseFloat(trim(data2[1])); var data = new

[visualization-api] Google o meter chart with Solid Colours

2014-06-10 Thread Vikranth Katanguri
Can anyone help me in having a similar chart using google o meter chart.I should get solid colors instead of gradients. Thanks, Vikranth -- You received this message because you are subscribed to the Google Groups Google Visualization API group. To unsubscribe from this group and stop

[visualization-api] Scatter chart with data points showing number of data per date/month/year. On zoom of the data point it should scatter into sub data points

2014-06-10 Thread Ananya Ojha
Refer: http://www.realestate.com.au/buy/in-melbourne,+vic/map-1 !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

Re: [visualization-api] Scatter chart with data points showing number of data per date/month/year. On zoom of the data point it should scatter into sub data points

2014-06-10 Thread Ananya
Can I have scatter like with points like https://03216454500425590576.googlegroups.com/attach/e8ac2af35ac74a52/GeocodeData.html?part=0.1view=1vt=ANaJVrGiPDp5tiBapFq38_UEZjZltwwXYLRk1sPII4tKzlxxdeQwdpJramj5mwOmg7PU6OoXADnZbp0cdibQDa55PutQLnwNUPrSEEC8WWLTZAwEv1EyaCU where on zoom it should scatter

Re: [visualization-api] Multiple google pie charts not working in IE8.

2014-06-10 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Amol, If you are using this success handler more than once, you will likely have unpredictable problems with it because of two main problems: You have several global variables that, when you assign to them, the values will replace previous values: data2, aP, bP, cP, dP, and maybe more.

Re: [visualization-api] Google o meter chart with Solid Colours

2014-06-10 Thread 'Jon Orwant' via Google Visualization API
Vikranth, Can you point the group to the chart you're trying to emulate? We can only see a blank rectangle, so it's tough figuring out what you're trying to do. https://developers.google.com/chart/image/docs/gallery/googleometer_chart has documentation for how to control the colors of the

Re: [visualization-api] Getting a RangeError: Maximum call stack size exceeded javascript error when attempting to create a DataTable with a large number of rows

2014-06-10 Thread Andrew Gallant
Try replacing this: data.addRows(tmp.length); for (var i = 0; i tmp.length; i++) { data.setValue(i, 0, tmp[i][0]); data.setValue(i, 1, tmp[i][1]); } with this: for (var i = 0; i tmp.length; i++) { data.addRow(tmp[i]); } I would also suggest making your null values explicit, eg:

[visualization-api] Re: How to create event to show table's recent date data?

2014-06-10 Thread Andrew Gallant
You set up a filter for the date column, are you trying to set the default value for the filter, or do you always want to show only the latest date? On Tuesday, June 10, 2014 5:50:28 AM UTC-4, ali wrote: Hi, How can I create event, which can render table's only showing yesterday's date

Re: [visualization-api] Multiple google pie charts not working in IE8.

2014-06-10 Thread Andrew Gallant
Also, while this isn't the immediate cause of your errors, you should adjust your select handlers to account for users deselecting a pie slice. If a slice is deselected, the array returned by the #getSelection method will be empty, so this line: var selectedItem = chartRev.getSelection()[0];

[visualization-api] Genral error on any chart.

2014-06-10 Thread Khrys
Something happened. All my charts stopped working. Even the one I have on jsfiddle. -- 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: Genral error on any chart.

2014-06-10 Thread Khrys
it is suddenly back oO On Tuesday, June 10, 2014 2:14:32 PM UTC-3, Khrys wrote: Something happened. All my charts stopped working. Even the one I have on jsfiddle. -- You received this message because you are subscribed to the Google Groups Google Visualization API group. To unsubscribe

[visualization-api] Gradient on bar

2014-06-10 Thread Ronneil Camara
Good afternoon folks. Does someone have an example of a bar chart whose each bar's color is a gradient? Thanks, Neil -- 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,

[visualization-api] Re: Gradient on bar

2014-06-10 Thread Andrew Gallant
To the best of my knowledge, you cannot give the bars a gradient, but with the recent changes to the way bar styling works, I think this would make a good addition to the feature set. There is already a feature request

[visualization-api] graph is not coming up.

2014-06-10 Thread serene
Hi I m trying to implement google bubble chart in my OBIEE. Here's my code: if(document.URL.indexOf(saw.dll?Answers) == -1) {google.load(visualization, 1, {packages:[corechart]});google.setOnLoadCallback(drawChart);} function drawChart() {if(document.URL.indexOf(saw.dll?Answers) == -1) {

[visualization-api] Re: graph is not coming up.

2014-06-10 Thread Andrew Gallant
nbsp; is not valid in javascript. Replace all of them with numbers, strings, or nulls as appropriate. On Tuesday, June 10, 2014 2:14:39 PM UTC-4, serene wrote: Hi I m trying to implement google bubble chart in my OBIEE. Here's my code: if(document.URL.indexOf(saw.dll?Answers) == -1)

Re: [visualization-api] Re: graph is not coming up.

2014-06-10 Thread Salomi Thangadas
Hi Andrew thanks for you quick response. I tried to do that. Also, is there a way to group by a field. e.g; I want to group the data in Row @1 by dept, is it possible to define it in the narrative. I think, for each and every person the code is taking the value,... if you see above, instead, can

[visualization-api] Re: Gradient on bar

2014-06-10 Thread Ronneil Camara
Ah! Can't wait :) On Tuesday, June 10, 2014 12:42:40 PM UTC-5, Andrew Gallant wrote: To the best of my knowledge, you cannot give the bars a gradient, but with the recent changes to the way bar styling works, I think this would make a good addition to the feature set. There is already a

[visualization-api] Calendar error q[Ec] is not a function

2014-06-10 Thread attentionjay
I am attempting to set up a calendar to show volume data. I am receiving an error q[Ec] is not a function. I am pulling data from a MySql database. The returned data is valid JSON. I cannot get this calendar to show up on the page. The test calendar from the Google page works fine so I know

Re: [visualization-api] Re: graph is not coming up.

2014-06-10 Thread Andrew Gallant
It is possible to group data with the Visualization API (see the google.visualization.data.group https://developers.google.com/chart/interactive/docs/reference#google_visualization_data_group function), but this is probably easier to handle server-side, especially if you are using a SQL query

[visualization-api] Re: How to create event to show table's recent date data?

2014-06-10 Thread Missy
I would like to be able to show, only the latest date data (table) when the web page renders. Thanks. On Tuesday, June 10, 2014 5:58:25 PM UTC+1, Andrew Gallant wrote: You set up a filter for the date column, are you trying to set the default value for the filter, or do you always want

[visualization-api] Re: Calendar error q[Ec] is not a function

2014-06-10 Thread Andrew Gallant
Your dates are not correct. First, the string should be in the format Date(year, month, day). Second, javascript uses 0-indexed months (so January is 0, not 1), so you have to adjust your data appropriately. Try this: $year = (int) Date('Y', $trans_date); $month = (int) Date('m',

[visualization-api] Re: How to create event to show table's recent date data?

2014-06-10 Thread Andrew Gallant
Do you want the user to be able to change it, or should this be unchangeable? On Tuesday, June 10, 2014 4:29:34 PM UTC-4, Missy wrote: I would like to be able to show, only the latest date data (table) when the web page renders. Thanks. On Tuesday, June 10, 2014 5:58:25 PM UTC+1,

[visualization-api] Re: Calendar error q[Ec] is not a function

2014-06-10 Thread attentionjay
Andrew, I can't thank you enough. I had code similar to this on another page, but it was not working. You have helped me greatly. This makes sense now. I had assumed that it was in the date format, but I just could not figure it out. On Tuesday, June 10, 2014 1:31:14 PM UTC-7, Andrew Gallant

[visualization-api] Re: How to create event to show table's recent date data?

2014-06-10 Thread ali
Whenever the page renders or refreshes, the table should always go back to default latest date's data. The users should be able to filter table by dates the using the category filter control. Thanks On Tuesday, June 10, 2014 9:34:47 PM UTC+1, Andrew Gallant wrote: Do you want the user to be

[visualization-api] Re: How to create event to show table's recent date data?

2014-06-10 Thread Andrew Gallant
With the dates specified as strings like that, choosing the latest date is going to be tricky, unless there is some structure to your data that you can take advantage of (like the latest date is always in the first row of data or something similar). If you can't depend on the structure to tell

[visualization-api] Google Charts Down

2014-06-10 Thread AM
Hi, I'm now using what I think is the correct version of the charts package: google.load('visualization', '1.0', {packages: ['controls']}); But I'm getting errors for charts. This all worked earlier. Is this my issue or is something down? Errors:

Re: [visualization-api] Google Charts Down

2014-06-10 Thread 'Jon Orwant' via Google Visualization API
Google Charts is up, has experienced no downtime in recent memory, and your charts load fine. If there's a problem, it's on your end... Jon On Tue, Jun 10, 2014 at 6:21 PM, AM apmil...@gmail.com wrote: Hi, I'm now using what I think is the correct version of the charts package:

Re: [visualization-api] Google Charts Down

2014-06-10 Thread AM
Really strange. I just get errors on my side for every page with charts on them. I'm getting b.I is not a function One or more participants failed to draw() On Tuesday, June 10, 2014 3:25:14 PM UTC-7, orw...@google.com wrote: Google Charts is up, has experienced no downtime in recent

Re: [visualization-api] Google Charts Down

2014-06-10 Thread 'Jon Orwant' via Google Visualization API
The new release of Google Charts just went live, so this may be related. Your charts load fine for me, but I may be hitting a datacenter that still has the old version. We'll investigate. Jon On Tue, Jun 10, 2014 at 6:34 PM, AM apmil...@gmail.com wrote: Really strange. I just get errors on

[visualization-api] Re: How to create event to show table's recent date data?

2014-06-10 Thread ali
Hi, Thanks for the clarification. I have now changed the string dates to 'date' only (http://jsfiddle.net/mis786/C3JfZ/3/). Is it possible to set up, the default date when the renders using the updated data in jsfiddler example. Thanks in advance. On Tuesday, June 10, 2014 10:39:42 PM

Re: [visualization-api] Google Charts Down

2014-06-10 Thread 'Jon Orwant' via Google Visualization API
On the assumption that this is affecting more than just you, we'll roll back the new release worldwide so that we have time to debug. We don't have any reports of problems other than yours, so we''ll use your charts to identify what went wrong. Rolling back may take a few hours, so we appreciate

Re: [visualization-api] Google Charts Down

2014-06-10 Thread Andrew Gallant
In Firefox, the charts work, but I see a few errors that could be causing problems. In Chrome, the charts don't work and there are a bunch of cross-domain security errors related to Disqus and ShareThis. Check the developer's console in each and clear up those errors. Maybe that will

Re: [visualization-api] Google Charts Down

2014-06-10 Thread Andrew Gallant
Jon, I'm not convinced that this is a rollout issue. Is there something I can check in the API that will let you know whether I'm pulling the old or the new version from here? It's working in Firefox and not Chrome, and there are a bunch of security issues that could be causing all kinds of

Re: [visualization-api] Google Charts Down

2014-06-10 Thread Andrew Gallant
Nevermind, I take that back. All of my example charts are down in Chrome, and they just stopped working in Firefox within the past minute or so as well. On Tuesday, June 10, 2014 6:55:46 PM UTC-4, Andrew Gallant wrote: Jon, I'm not convinced that this is a rollout issue. Is there something

[visualization-api] Re: How to create event to show table's recent date data?

2014-06-10 Thread Andrew Gallant
Is this what you are looking for? http://jsfiddle.net/asgallant/C3JfZ/4/ On Tuesday, June 10, 2014 6:44:45 PM UTC-4, ali wrote: Hi, Thanks for the clarification. I have now changed the string dates to 'date' only (http://jsfiddle.net/mis786/C3JfZ/3/). Is it possible to set up, the

Re: [visualization-api] Google Charts Down

2014-06-10 Thread George Madrid
Isn't it fun watching the rollout as stuff begins to break all over the world? :-) There are two possibilities here: 1. The rollout is in some kind of inconsistent state that is causing weird failures, or 2. Something is broken with the new release, itself. I think the first problem is less

Re: [visualization-api] Google Charts Down

2014-06-10 Thread AM
Thank you for the feedback on this. I was worried my code became incompatible in some way. Let me know if I can help. On Tuesday, June 10, 2014 4:17:39 PM UTC-7, George Madrid wrote: Isn't it fun watching the rollout as stuff begins to break all over the world? :-) There are two

Re: [visualization-api] Google Charts Down

2014-06-10 Thread 'Jon Orwant' via Google Visualization API
Your charts look good to me now. Let us know if you see otherwise. Jon On Tue, Jun 10, 2014 at 8:09 PM, AM apmil...@gmail.com wrote: Thank you for the feedback on this. I was worried my code became incompatible in some way. Let me know if I can help. On Tuesday, June 10, 2014 4:17:39

[visualization-api] Re: Legend box

2014-06-10 Thread mc1
Andrew - do you know if the charts broadly support adding units to the legend? In my geochart, I allow users to switch between scales, and without units, the legend can be confusing. The values at either end of the legend (max/min) already update automatically, and I would also like the user

Re: [visualization-api] Google Charts Down

2014-06-10 Thread Anthony Milano
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 Google Visualization API google-visualization-api@googlegroups.com wrote: Your charts look good to me now. Let us know if you see otherwise.

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

2014-06-10 Thread mc1
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 you hover a mouse over a given country. Is this something that can be easily adjusted? Thanks!

Re: [visualization-api] Google Charts Down

2014-06-10 Thread George Madrid
The rollback finished at about 10:30pm ET. Although, depending what data center you were hitting, you might have seen it sooner. Glad that it's all back to normal. Now we'll work on figuring out what went wrong. Thanks again for your bug report. George On Tuesday, June 10, 2014 10:31:35

Re: [visualization-api] Multiple google pie charts not working in IE8.

2014-06-10 Thread Amol Bhosle
Hi Daniel, I've replaced variables ap,bp,cp,dp with a,b,c,ap,bp,cp,dp,ar,br,cr,dr . And for each pie chart div are different with unique id . But its still not working. I'll try on jsfiddle to reproduce error and provide you that link. -- You received this message because you are

[visualization-api] Re: Multiple google pie charts not working in IE8.

2014-06-10 Thread Amol Bhosle
Hi Andrew, I've replaced each handler as you have suggested . Still it's not showing any difference . -- 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