[visualization-api] Re: zig-zag order of labels below hAxis

2013-08-20 Thread Sushil Aggarwal
doing the same doesnot resolve the issue... -- 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

Re: [visualization-api] Re: Line Chart

2013-08-20 Thread asgallant
Change the chart to a ComboChart, and set the series.series index.type option to area for the DOE Goal series. See http://jsfiddle.net/asgallant/GTpgA/36/ On Tuesday, August 20, 2013 12:22:47 AM UTC-4, TheInnovator wrote: How can I convert the DOE goal line to an area chart line? I just

[visualization-api] Re: Bar Chart Height

2013-08-20 Thread asgallant
I modified the code like this: var height = data.getNumberOfRows() * 30 + 60; var chart2 = new google.visualization[ 'BarChart' ]( document.getElementById('chart2') ); chart2.draw(data, { isStacked: true, legend: { position: 'bottom' }, height: height }); and it worked

[visualization-api] Re: zig-zag order of labels below hAxis

2013-08-20 Thread asgallant
I can't duplicate your problem. By default, the axis labels should stack the way you want them. I used your hAxis options and they still stacked like you want them: http://jsfiddle.net/asgallant/wy8Ns/. Can you post a full code example that demonstrates the problem? On Tuesday, August 20,

[visualization-api] Re: which standard chart of the Google charts

2013-08-20 Thread asgallant
That chart should be possible to create, but it will probably be complicated to put together. The lines and left/right axes are easy; the colored bands are a bit harder, you'll need to use something like thishttp://jsfiddle.net/asgallant/KJavc/to make them (don't use that exact example, I

[visualization-api] Re: Bar Chart Height

2013-08-20 Thread Mark Wade
When I do that, the legend disappears for the first chart, and the second gets a lot of padding at the top, which increases as more and more roes get added - if the chart had 50 rows, it would be half way down the page. On Tuesday, August 20, 2013 3:58:36 PM UTC+1, asgallant wrote: I

[visualization-api] java.lang.NoSuchMethodError: com.google.common.collect.ImmutableList.copyOf on appengine

2013-08-20 Thread Mukesh Joshi
I am using Cloud SQL with Appengine and GWT for a chart app which is running fine in local eclipse dev environment. I had to add the gauva jars to the gwt eclipse plugin to resolved the same issue in the local environment but I am not sure how I can resolve this on the remote appengine

[visualization-api] Re: Bar Chart Height

2013-08-20 Thread asgallant
You can do some more tweaking of the chart's dimensions using the chartArea option. See this as an example: http://jsfiddle.net/asgallant/eHhpM/1/ On Tuesday, August 20, 2013 11:07:24 AM UTC-4, Mark Wade wrote: When I do that, the legend disappears for the first chart, and the second gets

[visualization-api] Re: Column Chart doesn't display on IE8

2013-08-20 Thread Stacie DaPonte
I am trying to test the Google Charts main page (https://developers.google.com/chart/) for compatibility in IE8, 7 and 6. We have a Development Server set up that I am accessing using an app called CoRD (sourceforge), as I read on a forum that using the Developer tools in newer version of IE

[visualization-api] Re: Google vis api request timed out message

2013-08-20 Thread funds
these are the links to the 3 requests not returning: http://www.globalfundexchange.com/newgfe/index.php?option=com_roksprockettask=ajaxformat=rawItemId=101 http://ig.icanfindthis.me:8080/adserver/static/js/inimage_s.js?pid=66ext_domain=icanfindthis.meox_subId=2000198225

[visualization-api] Adjustable Line Graph

2013-08-20 Thread Jonathan Lewis
good day Is it possible to draw a Line graph and then having the user adjust the graph using his cursor? similar to this : http://www.rgraph.net/docs/adjusting-line.html -- You received this message because you are subscribed to the Google Groups Google Visualization API group. To

[visualization-api] Re: which standard chart of the Google charts

2013-08-20 Thread armon000
hello @asgallant I'm trying to do this but could you tell me for The lines and left/right axes i can use which chart with which option? (i don't know do you have any example!!! ) and also for the colored bands how do you think, i can use combochart or areachart? maybe i must to use the

[visualization-api] Connecting to and Visualizing GA Data?

2013-08-20 Thread WhoSoLovesUs
Hi, I'd like to experiment with visualizing google analytics data This guide https://developers.google.com/analytics/solutions/articles/gdataAnalyticsCharts and associated code seems to be outdated (the links to the files are not found, though I managed to find them elsewhere) Specifically I

[visualization-api] Re: Column Chart doesn't display on IE8

2013-08-20 Thread asgallant
Try testing an individual chart rather than Google's developer site. The charts work reasonably well in IE8 and should mostly work in IE7. I would not count on them working to any degree in IE6. On Tuesday, August 20, 2013 3:18:48 PM UTC-4, Stacie DaPonte wrote: I am trying to test the

[visualization-api] Re: Google vis api request timed out message

2013-08-20 Thread asgallant
The png should not affect anything, and at a guess the second link is for advertising, and so shouldn't affect this. What does the first one do? In any event, none of these are the urls of the google spreadsheets, so the connection problem you are having is not related to the queries. On

[visualization-api] Re: Adjustable Line Graph

2013-08-20 Thread asgallant
No, that is not supported in the API. On Tuesday, August 20, 2013 3:58:44 PM UTC-4, Jonathan Lewis wrote: good day Is it possible to draw a Line graph and then having the user adjust the graph using his cursor? similar to this : http://www.rgraph.net/docs/adjusting-line.html -- You

[visualization-api] Re: which standard chart of the Google charts

2013-08-20 Thread asgallant
You'll want to use a ComboChart. To get you started, create a ComboChart with line type series for your lines. In the series.series index options, you can set the type of the data series and assign it to the left or right axis: series: { 0: { // make this a line series

[visualization-api] autoranging on gauge object...

2013-08-20 Thread Enno Davids
I'm using a gauge object and have run into the situation where the range I'm using is being exceeded. This is easy enough to fix by basically setting new values for the min and pax properties prior to calling the draw method on the object. The result of course sees the whole scale jump shift

[visualization-api] Re: autoranging on gauge object...

2013-08-20 Thread asgallant
The gauges support animation as is, no need to bring in jQuery to handle it. Just feed the chart new data and it auto-animates when you redraw. On Tuesday, August 20, 2013 7:16:42 PM UTC-4, Enno Davids wrote: I'm using a gauge object and have run into the situation where the range I'm using

[visualization-api] Re: autoranging on gauge object...

2013-08-20 Thread Enno Davids
That's true as far as it goes... the gauges animate the movement of the pointers, which works well. But if the value I'm displaying now goes beyond the max value of the gauge, it just pins the pointer at the top of the gauge. So, I then decided to check my data before passing it to the gauge,