[visualization-api] Re: Need help on generating timeline chart using json file

2014-10-27 Thread Vamshi Krishna
I was able to generate the timeline successfully with the help of JSON. When i generated the graph the everything was fine, except the scale on the major axis. Currently the scale of the major axis is in terms of hours. It starts from 12AM and keeps ticking till 12AM while the dates are

[visualization-api] Re: How to implement drill down deature in google chart

2014-10-27 Thread prajna alva
Hi, I would like to see in dahboard.say drill down from year to month then weeks and then days..so on. Thank you for your previous reply Regards, Prajna On Thursday, 16 October 2014 06:43:17 UTC+5:30, Andrew Gallant wrote: There are many ways to accomplish a drilldown chart; which is the

[visualization-api] Re: create multi-series from category filter

2014-10-27 Thread ma
Thank you for your reply. Apology for not making query clearer. I am trying to create a multi-series line chart, which is triggered by selecting one or more names, from the category filter control. The line chart should, create a multi-series, when one or more 'name' column is selected

[visualization-api] Geochart: New York City is not plotting.

2014-10-27 Thread mctenold
If you visit the site that I'm working on, for some reason all cities in my Google Visualization are plotting on the map except NYC. I've tried New York City, New York, NY, and NYC. You can see that it's there in the code if you view source. Any ideas as to what's causing this?

[visualization-api] Re: Google Chart in IE (not picking up default font of Arial - using a script font like Corsiva)

2014-10-27 Thread Juan Carlos LoƔisiga Montiel
Did you found the solution? El viernes, 5 de agosto de 2011 14:29:02 UTC-11, coder_ro escribiĆ³: I have the same problem and am working on it (or around it). let me know if you find a solution. On Jun 29, 2:08 pm, CZ christina.zellman.penn.medic...@gmail.com wrote: Hi, I have

[visualization-api] Re: Geochart: New York City is not plotting.

2014-10-27 Thread mctenold
Here's a piece of my code: data.addRows([ ['Charleston, SC', 'charleston-sc', 1, 'h1 class=google-tooltipCharleston, SC/h1'], ['Charlotte, NC', 'charlotte-nc', 1, 'h1 class=google-tooltipCharlotte, NC/h1'], ['Greenville, SC', 'greenville-sc', 1, 'h1 class=google-tooltipGreenville,

Re: [visualization-api] Re: Geochart: New York City is not plotting.

2014-10-27 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi, I'm not quite sure what you're talking about. I see New York being plotted on your chart. Can you post a screenshot of what you see? On Mon Oct 27 2014 at 12:56:39 PM mctenold mcten...@gmail.com wrote: Here's a piece of my code: data.addRows([ ['Charleston, SC', 'charleston-sc', 1, 'h1

Re: [visualization-api] Re: Geochart: New York City is not plotting.

2014-10-27 Thread mctenold
That's really bizarre. I've now cleared my cache multiple times, used different browsers, even my iPhone, and I'm still not seeing NYC. https://lh4.googleusercontent.com/-wq9Bfsa8NpE/VE59co8b7GI/A0s/jHSrBEMIgTk/s1600/Screen%2BShot%2B2014-10-27%2Bat%2B12.13.06%2BPM.jpeg On Monday,

Re: [visualization-api] Word Tree IDs

2014-10-27 Thread 'Jon Orwant' via Google Visualization API
Hi Josh, Word tree isn't going to replace the org chart. There's no way to make the org chart display horizontally, but you can use the allowCollapse option and the collapse() method to make the fan-out of your chart more manageable. Jon On Thu, Oct 23, 2014 at 2:22 AM, Josh Beagley

Re: [visualization-api] Re: Geochart: New York City is not plotting.

2014-10-27 Thread mctenold
May I ask what browser you were in? On Monday, October 27, 2014 12:07:40 PM UTC-5, Sergey wrote: Hi, I'm not quite sure what you're talking about. I see New York being plotted on your chart. Can you post a screenshot of what you see? On Mon Oct 27 2014 at 12:56:39 PM mctenold

Re: [visualization-api] Re: Geochart: New York City is not plotting.

2014-10-27 Thread 'Sergey Grabkovsky' via Google Visualization API
OK, I was able to reproduce the issue. It appears to be caused by the fact that you have Charleston, SC in your dataset 3 times. This issue is fixed in our 1.1 release, which will become 1.0 at some point this week. You could work around this by removing the extra Charleston, SC data that you have

Re: [visualization-api] Re: Geochart: New York City is not plotting.

2014-10-27 Thread mctenold
Thanks Sergey, I was actually just going to go back and modify that so I don't have repeating cities. Right now I'm just looping over the events custom post type in Wordpress so if multiple events have the same city, it will add the city twice. I'm going to go back and just loop over the actual

[visualization-api] column chart font size change?

2014-10-27 Thread Abdul Javeed
Im trying to make the font bigger of the title only. I have had no luck, Below is my code, if you know the answer please code it in my html and paste the new code back again in the reply. Thanks !-- You are free to copy and use this sample in accordance with the terms of the Apache license

[visualization-api] Re: Need help on generating timeline chart using json file

2014-10-27 Thread Andrew Gallant
Sorry, but the Timeline's axis is not yet configurable. On Monday, October 27, 2014 5:34:08 AM UTC-4, Vamshi Krishna wrote: I was able to generate the timeline successfully with the help of JSON. When i generated the graph the everything was fine, except the scale on the major axis.

[visualization-api] Re: How to implement drill down deature in google chart

2014-10-27 Thread Andrew Gallant
You can take the same concept from my example and apply it for your needs; just group the data by week/month/year, or whatever you need. On Monday, October 27, 2014 6:26:16 AM UTC-4, prajna alva wrote: Hi, I would like to see in dahboard.say drill down from year to month then weeks and

[visualization-api] How to remove the X,Y axis grid lines on Column chart

2014-10-27 Thread born2achieve
Hi, I create column chart and it has vaxis and haxis grid lines. i trying hard to remove the both the grid lines. i tried to Google and it says use color:transparent. but if i do that for both the axis, it only removed the vaxis grid lines. not haxis grid lines. Please find the attached image

[visualization-api] Re: create multi-series from category filter

2014-10-27 Thread Andrew Gallant
Ahh, I see now. I had thought that your data was already organized by data series. To split the data into series based on a column of values, there are two basic ways. First, you can continue along the path you started, filtering your data, splitting it into series, and then grouping it for

[visualization-api] Re: How to remove the X,Y axis grid lines on Column chart

2014-10-27 Thread Andrew Gallant
Setting vAxis.gridlines.color to transparent should work: http://jsfiddle.net/asgallant/oatbak5s/ On Monday, October 27, 2014 9:13:00 PM UTC-4, born2achieve wrote: Hi, I create column chart and it has vaxis and haxis grid lines. i trying hard to remove the both the grid lines. i tried to

[visualization-api] Re: column chart font size change?

2014-10-27 Thread Andrew Gallant
The chart title's font size is controlled by the titleTextStyle.fontSize option: http://jsfiddle.net/asgallant/1b7sjvts/ On Monday, October 27, 2014 6:41:42 PM UTC-4, Abdul Javeed wrote: Im trying to make the font bigger of the title only. I have had no luck, Below is my code, if you know

[visualization-api] Column Chart - Show percentage above each bar

2014-10-27 Thread Nicole Goldup
Hi there, page: http://www.hpvregister.org.au/research/coverage-data/hpv-vaccination-coverage-2013 Is it possible to show the percentage value above each bar? e.g. like the attached image Thanks, Nicole -- You received this message because you are subscribed to the Google Groups Google