[visualization-api] google pie chart problem

2013-07-19 Thread mncjain4
Hello sir I used google pie chart to display according to the csv file. I want to add extra that is onmouseover I want display subdata of each slice. My problem is that on any one mouseover event all my fuctions are called.. I want only one function to be called of respective slice.. by getting

Re: [visualization-api] Creating a custom GeoChart for US counties

2013-07-19 Thread Sergey Grabkovsky
Your project is really impressive! I believe you're the first user to be making their own maps =) But may I suggest that you use version 1.1? I noticed that switching maps is a bit slow, and saw that this because of some geocoding issues that we fixed in the newer version. We'll eventually push

[visualization-api] Re: google pie chart problem

2013-07-19 Thread asgallant
I you post your code or a link to the page, I can help you figure this out. On Friday, July 19, 2013 3:21:31 AM UTC-4, mncj...@gmail.com wrote: Hello sir I used google pie chart to display according to the csv file. I want to add extra that is onmouseover I want display subdata of each

Re: [visualization-api] Re: vAxis and hAxis data cannot be shown after the second chart in IE9/10

2013-07-19 Thread Chan Tai Man
Thanks for your help. I finally figured out what happened. Everything went right after using table to enclose the div tab. Very weird, this only happens in IE but not in firefox, chrome and safrai On Fri, Jul 19, 2013 at 1:48 PM, asgallant drew_gall...@abtassoc.comwrote: If you post your

[visualization-api] Re: Category Filter

2013-07-19 Thread Ragini Pandey
Here is the link for you to view- http://medeolinx.com/BASP/vcf-details-visualize.php. It takes a sec to load. I am also displaying the data returned in the alert box. (For now only small test data but it will be a lot more). Also for now there is one control but I will add more controls to

[visualization-api] Re: Category Filter

2013-07-19 Thread Ragini Pandey
Thanks a lot. It works. 1. Is there a way we can download the filtered data as a result of selections and the graphs as images? 2. Is it possible to get the data in increments depending on selections if we are getting the data from database. The reason I am asking this is that the data I want

[visualization-api] Re: Category Filter

2013-07-19 Thread asgallant
There's nothing in the API that will handle this for you. You will have to set up a service on your server to create downloads for your data. You can also handle data pagination on your server, though with the ability to filter data on the page, you will likely want to use the control to

[visualization-api] Re: Category Filter

2013-07-19 Thread asgallant
There is nothing wrong with your javascript - the problem is CSS. If you examine the layout (using something like Chrome's element inspector), you can see that because of the floats on the control divs, the table div is overlaying them in the layout, which is preventing the click event from

[visualization-api] Editing Y-Axis (vaxis) labels

2013-07-19 Thread Ambientson
Hello, I am creating a ColumnChart that should display the activity level of a person. The activity level can be low, medium or high. Since this is a very simple chart, I have no problem creating the chart and displaying the data by representing low as 1, medium as 2 and high as 3. However, I

Re: [visualization-api] Connecting a Google Spreadsheet as a Datasource

2013-07-19 Thread Samantak Bagchi
Thanks for the reply, Thomas. Somehow this mail had skipped the inbox. I haven't fully understood your response. Let me try to clarify my question a little better. Here's the google playground version of the Motion Chart

[visualization-api] Prefix with '$' in table chart not working

2013-07-19 Thread TheInnovator
Hi All, I used Google charts to visualize my data into a table and it worked. The last column is where the issue is. I am trying to format the last column as currency(prefix with '$'), which works except for the last column in the first row. Though I applied the same format, it bombs on me.

Re: [visualization-api] Editing Y-Axis (vaxis) labels

2013-07-19 Thread Daniel LaLiberte
Hi Phil, The API does not currently support the feature you want, but fortunately, it will in the very near future. The new feature will let you specify an array of tick values, along with an optional formatted string representation of each value. For example: vAxis: { ticks: [ 0, { v:

[visualization-api] Re: Prefix with '$' in table chart not working

2013-07-19 Thread asgallant
You can't use the object notation for cells when using the arrayToDataTable method - it is unsupported, as you see when you try to use that in the first row. You can either build the DataTable manually and then pass the rows in using the object notation, or you can enter just the values using