[visualization-api] 2 Chart 1 HTML and Column Chart

2013-05-17 Thread hertyu
Hello! I need to display two Chart in the same html. The first is a Pie Chart, and Column Chart shows a selection on the other. To represent the Column Chart would send the event 'ready' By clikink in the Pie Chart. When loading the data, can you read from a file?. Given the information

[visualization-api] google line chart about annotation color

2013-05-17 Thread alice moon
Hi, Is there any way to change the annotation color ? not the annotation text. I want to add some event to change the annotation color. -- 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] Add Value on Google Treemap

2013-05-17 Thread Zoro Swordsman
Hi, may I know can I show the value on the treemap? Just like a mouseover function on other google chart. Cos I saw on the sample at google playground, it only show the 'name' of that area instead of showing the 'value'. Can I know what is the coding? Thank you. -- You received this message

[visualization-api] Pie chart issues for IE8

2013-05-17 Thread Nikhil Agrawal
HI I am using google pie chart, for all browsers it is working fine but for IE8 i have a issues. Suppose if I need to draw chart for Name - count 1st - 3000 2nd-2 (the difference is very large) Then the chart is breaking in IE8 but in all other browser including IE9 its works

[visualization-api] Re: 2 Chart 1 HTML and Column Chart

2013-05-17 Thread asgallant
You should be able to set up your PieChart and ColumnChart like that, but I will need some more detail about how the two charts relate to one another in order to help you set it up. What data does the PieChart use? When you click on a slice, how does that data relate to the ColumnChart? Yes,

[visualization-api] Re: google line chart about annotation color

2013-05-17 Thread asgallant
The annotation color is determined by the series color, so you would have to change the series color. Depending on how your chart is set up and what the structure of the data is, you might be able to write a hack around the problem. On Friday, May 17, 2013 5:23:10 AM UTC-4, alice moon wrote:

[visualization-api] Re: Add Value on Google Treemap

2013-05-17 Thread asgallant
If I recall correctly, the TreeMapCharts do not yet support adding values to the tooltips, nor do they support custom tooltips. You can create your own tooltips by registering onmouseover and onmouseout event handlers for the chart (these events pass an object containing the row of the

[visualization-api] Re: Pie chart issues for IE8

2013-05-17 Thread asgallant
That seems to be a bug. You can file a bug report on it here: http://code.google.com/p/google-visualization-api-issues/issues/list. Confirmed with this jsfiddle: http://jsfiddle.net/asgallant/29xyj/ On Friday, May 17, 2013 8:33:21 AM UTC-4, Nikhil Agrawal wrote: HI I am using google pie

[visualization-api] Bug: Since the release of May 15, 2013 the page crashes when the logScale from the vAxis object is set to true

2013-05-17 Thread mathew . churchman
This used to work before the new release (May 15, 2013). Now, the script does not work properly (crushing the page) if the property logScale from the vAxis object is set to true. If this property is erased, the chart is generated without any problem, if the logScale is set to true it seems to

[visualization-api] Re-grouping filtered data

2013-05-17 Thread David Sledge
Hi Is it possible to re-generate the grouping of a data table following the application of a filter and then display a chart from the re-grouped data? Regards ds -- You received this message because you are subscribed to the Google Groups Google Visualization API group. To unsubscribe from

Re: [visualization-api] Bug: Since the release of May 15, 2013 the page crashes when the logScale from the vAxis object is set to true

2013-05-17 Thread Sergey Grabkovsky
Could you please post some sample failing code? I'd like to see exactly what cases this fails under, since the basic logScale tests that I'm trying seem to work. - Sergey On Fri, May 17, 2013 at 10:15 AM, mathew.church...@pildo.com wrote: This used to work before the new release (May 15,

[visualization-api] Re: 2 Chart 1 HTML and Column Chart

2013-05-17 Thread Scaramouche
Thanks for the answer asgallant. La Pie Chart tiene informacion sobre porcentajes de un año, mientras que Column Chart tiene informacion historica. La relaccion es el nombre de la porcion de Pie Chart, que puedo obtener con el metodo getSelection. El viernes, 17 de mayo de 2013 15:47:37

[visualization-api] Re: Re-grouping filtered data

2013-05-17 Thread asgallant
The short answer is yes, you can do pretty much anything with the data at any time. The long answer to the how do you do it question is much more complicated, and depends on exactly what you want to have happen. Is your goal something like this: data - filter - group data - draw chart ? On

Re: [visualization-api] Bug: Since the release of May 15, 2013 the page crashes when the logScale from the vAxis object is set to true

2013-05-17 Thread mathew . churchman
I've also tried this in the code playground and it works, but once implemented this seems to happen. Anyhow it used to work with the previous release. The code is: var chart = new google.visualization.LineChart(document.getElementById(id)); chart.draw(data, {width: 840, height: 340, title:

[visualization-api] Re: 2 Chart 1 HTML and Column Chart

2013-05-17 Thread Scaramouche
Thanks for the answer asgallant The Pie Chart has information on percentages of a year, while Column Chart has historical information. The relaccionados is the name of the portion of Pie Chart, that I can get with GetSelection method. El viernes, 17 de mayo de 2013 15:47:37 UTC+2, asgallant

Re: [visualization-api] Bug: Since the release of May 15, 2013 the page crashes when the logScale from the vAxis object is set to true

2013-05-17 Thread Sergey Grabkovsky
Yup, the data is the important bit here. Your options seem to work when I try them with my data. - Sergey On Fri, May 17, 2013 at 10:48 AM, mathew.church...@pildo.com wrote: I've also tried this in the code playground and it works, but once implemented this seems to happen. Anyhow it used to

[visualization-api] Re: 2 Chart 1 HTML and Column Chart

2013-05-17 Thread asgallant
Can you provide some sample data for me to work with? On Friday, May 17, 2013 10:48:06 AM UTC-4, Scaramouche wrote: Thanks for the answer asgallant The Pie Chart has information on percentages of a year, while Column Chart has historical information. The relaccionados is the name of the

[visualization-api] Re: Re-grouping filtered data

2013-05-17 Thread David Sledge
Hi Thanks fir the quick response. Yes, I want to use a control to interactively filter the top level table and have it re-group on the fly and also have the chart re-generated. I can filter the table interactively but the grouping currently remains static. -- You received this message

[visualization-api] Re: 2 Chart 1 HTML and Column Chart

2013-05-17 Thread Scaramouche
Sorry I can not provide information, I have no access to it now. But in the Pie Chart sales would be presented to the shops, and the Column Chart, the shop this historic income / expenses. I have been trying as I could do this, but I have a couple of questions. At the time of writing the code

[visualization-api] Re: Re-grouping filtered data

2013-05-17 Thread asgallant
Here's an example you can use: http://jsfiddle.net/asgallant/R9Fz4/ On Friday, May 17, 2013 11:45:26 AM UTC-4, David Sledge wrote: Hi Thanks fir the quick response. Yes, I want to use a control to interactively filter the top level table and have it re-group on the fly and also have the

[visualization-api] Re: 2 Chart 1 HTML and Column Chart

2013-05-17 Thread asgallant
You could do the second chart in a second script if you wanted to, but there unless there is a compelling reason to do so, I wouldn't. You only need to load the API once; the 1 in the loader tells the API to load the most current release version. Here's an example of one way in which this

[visualization-api] Re: Display Chart According to Control Status

2013-05-17 Thread Shaun
Unfortunately not, here is my revised code: !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 Reporting

[visualization-api] Re: Re-grouping filtered data

2013-05-17 Thread David Sledge
Hi That's cool, thanks. I've got my mockup working in jsfiddle. Now I just need to transfer it into my layout. Thanks for your help. ds On Friday, May 17, 2013 8:48:03 PM UTC+1, asgallant wrote: Here's an example you can use: http://jsfiddle.net/asgallant/R9Fz4/ On Friday, May 17, 2013

[visualization-api] Re: Display Chart According to Control Status

2013-05-17 Thread asgallant
I see that you are loading v 1.1 in the google load call, which is the release candidate version and may be buggy. Switch to v 1 instead: google.load('visualization', '1', {packages: ['controls']}); That may not solve your problem, but its worth trying. For me to test this, I will need a

[visualization-api] Re: Re-grouping filtered data

2013-05-17 Thread asgallant
You're welcome. On Friday, May 17, 2013 7:10:02 PM UTC-4, David Sledge wrote: Hi That's cool, thanks. I've got my mockup working in jsfiddle. Now I just need to transfer it into my layout. Thanks for your help. ds On Friday, May 17, 2013 8:48:03 PM UTC+1, asgallant wrote: Here's an

[visualization-api] Re: Add Value on Google Treemap

2013-05-17 Thread Zoro Swordsman
Okay. This is what I mean. Thank you so much. On Friday, May 17, 2013 6:45:07 PM UTC+8, Zoro Swordsman wrote: Hi, may I know can I show the value on the treemap? Just like a mouseover function on other google chart. Cos I saw on the sample at google playground, it only show the 'name' of

[visualization-api] Re: Add Value on Google Treemap

2013-05-17 Thread Zoro Swordsman
Hi,I have copy all the coding and create a new HTML file but I don know why the mouseover function on the treemap is not working like the 'Result'. I upload the file and can you help me to check where is the error? Thank you. On Friday, May 17, 2013 6:45:07 PM UTC+8, Zoro Swordsman wrote:

[visualization-api] Re: Add Value on Google Treemap

2013-05-17 Thread asgallant
That example code uses jQuery to create the tooltips; if you want to use the code as-is, you need to add a script tag for jQuery, like this: script src=//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js/script On Saturday, May 18, 2013 1:01:21 AM UTC-4, Zoro Swordsman wrote: Hi,I

[visualization-api] Re: Add Value on Google Treemap

2013-05-17 Thread Zoro Swordsman
is it add like this (the one that i highlighted with red)? but i tried and still not working.. may i know why? 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 style