[visualization-api] Re: HTML Tooltip Position in scatter chart

2014-08-07 Thread Ishwar
Thanks a lot @Andrew, it worked like a charm var chart = new google.visualization.ScatterChart(document.getElementById('chart_div')); google.visualization.events.addOneTimeListener(chart, 'ready', function () { var container = document.querySelector('#chart_div div:last-child');

[visualization-api] Re: problems showing characters from unicode hex codes

2014-08-07 Thread uoʎɐↃ ɐᴚuɐnɾ
OK, thanks for the clue Andrew. But, as I'm coding it in php, so (just in case it could be useful for someone) i think this should change html-unicode to javascript-unicode: $string = preg_replace('/#x([0-9A-Fa-f]+);/', '\u$1', $string); thanks again!! Regards. On Wednesday, August 6, 2014

[visualization-api] Re: Sankey Diagrams

2014-08-07 Thread James Patrick
I want to bring attention to this post, i also love and use Sankey Diagrams however the current state does not allow for any kind of loops within the data. Is it possible to request this feature or even contribute myself? Many Thanks James On Thursday, February 6, 2014 6:18:39 PM UTC, Ben

[visualization-api] Re: Google Visualization API - Maps

2014-08-07 Thread Carlos Moreira
Hi! Like Andrew already said, it's better to geocode the addresses first. If you use coordinates instead of text strings as the location data, the markers will load much faster. Like they in the documentation: The fastest modes are dataMode='regions' with locations specified as ISO codes,

[visualization-api] Re: Sankey Diagrams

2014-08-07 Thread Andrew Gallant
You can make a feature request here: http://code.google.com/p/google-visualization-api-issues/issues/list On Thursday, August 7, 2014 7:20:12 AM UTC-4, James Patrick wrote: I want to bring attention to this post, i also love and use Sankey Diagrams however the current state does not allow

[visualization-api] Not able to visualize charts in Android, suggest what changes required

2014-08-07 Thread ram
Not able to visualize charts in Android, suggest what changes required -- 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] How to make link of google charts with SQL2008

2014-08-07 Thread ram
How to make link of google charts with SQL2008 -- 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.

[visualization-api] Re: where to add chxr for google charts

2014-08-07 Thread Andrew Gallant
The chxr parameter is for the Image Chart API, not the Interactive Chart API, so you can't use it here. You can instead use the hAxis.viewWindow.min/max option, which allows you to specify the min and max values on the axis: hAxis: { title: 'Status of document', titleTextStyle: {

Re: [visualization-api] Re: Tyro GeoChart questions (also googleVis)

2014-08-07 Thread Bryan Maloney
googleVis is part of the R package. Pour in data, execute command, geochart pours out. However, I can manually add your code to that output. It worked like a charm. Thank you. On Wed, Aug 6, 2014 at 6:01 PM, Andrew Gallant agall...@google.com wrote: The javascript I used in the fiddle is:

[visualization-api] Re: Move and modify legend on Geochart?

2014-08-07 Thread Bryan Maloney
1: That's really cool. 2: When I mouseover, the legend jumps back to the lower left corner and loses all formatting improvements. -- You received this message because you are subscribed to the Google Groups Google Visualization API group. To unsubscribe from this group and stop receiving

[visualization-api] Bar Chart Width

2014-08-07 Thread qdkid
When the chart width can't hold all the datatable-rows, the chart simply cuts off. I am trying to make the chart width dynamic based on the row number. Is there a minimum width for each bar? Ie script var rows = datatable.getNumberOfRows (); var factor= 3; var width = Math.max (800,

[visualization-api] Re: where to add chxr for google charts

2014-08-07 Thread Google API user
Thank you the very quick reply Andrew... One more question that I had was, can we have any Horizontal scroll feature ? On Thursday, August 7, 2014 8:48:56 AM UTC-4, Andrew Gallant wrote: The chxr parameter is for the Image Chart API, not the Interactive Chart API, so you can't use it

Re: [visualization-api] Re: How to show X Axis at all teh time with Google AngularJS Chart DIrective

2014-08-07 Thread Vipul
Thanks a lot Andrew, it worked. Is there a Link where I can have documnetation for the Google Graphs for Angular On 6 August 2014 19:15, Andrew Gallant agall...@google.com wrote: You need to set the chart's interpolateNulls option to true. On Wednesday, August 6, 2014 6:17:05 PM UTC-4,

Re: [visualization-api] clearChart() undefined for Annotation Charts

2014-08-07 Thread Willie Warke
Daniel, Thank you for your quick response. I really appreciate it, and look forward to the improvements coming with the next release. --Willie On Wednesday, August 6, 2014 4:22:20 PM UTC-5, Daniel LaLiberte wrote: Hi Willie, Sorry to hear about your experience, but thanks for reporting

[visualization-api] Re: How to get a transparent chart ?

2014-08-07 Thread Laurent
Nobody knows how to get a transparent chart background ? -- 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: Not able to visualize charts in Android, suggest what changes required

2014-08-07 Thread Andrew Gallant
In general, older versions of the Android browser (before Android 3.2) do not support SVG, and thus cannot render charts. There is no fix for this except to use a different browser (Chrome, Firefox, Dolphin, etc). If your problem stems from a newer version of Android, we need more information

[visualization-api] Re: How to make link of google charts with SQL2008

2014-08-07 Thread Andrew Gallant
How you do this is going to depend on what your server environment is like. What server scripting/programming language are you working with? If you are using PHP, there is a sample script you can follow here: https://groups.google.com/d/msg/google-visualization-api/1Z2shPnkORA/RCj5QnyDVecJ.

[visualization-api] Re: Move and modify legend on Geochart?

2014-08-07 Thread Andrew Gallant
Hmmm...I would normally suggest using an onmouseover handler for that, but the GeoCharts don't fire mouse events. I think if you use a MutationObserver (or a DOMNodeInsertion event handler, if MutationObserver is not available) to watch for changes to the legend's container, and fix the

[visualization-api] Re: Bar Chart Width

2014-08-07 Thread Andrew Gallant
The calculation for determining bar widths is complex (I wrote up a rough estimation here: http://stackoverflow.com/a/24825504/613559). Assuming all of your x-axis values are evenly spaced (or you are using a discrete axis) and you have the bar.groupWidth option set to '100%', each row needs a

[visualization-api] Re: where to add chxr for google charts

2014-08-07 Thread Andrew Gallant
The explorer option allows users to scroll horizontally (see my example above). On Thursday, August 7, 2014 11:28:36 AM UTC-4, Google API user wrote: Thank you the very quick reply Andrew... One more question that I had was, can we have any Horizontal scroll feature ? On Thursday,

Re: [visualization-api] Re: How to show X Axis at all teh time with Google AngularJS Chart DIrective

2014-08-07 Thread Andrew Gallant
The only Angular Google Charts directive I know about (this one https://github.com/bouil/angular-google-chart) is a 3rd-party library. As far as I know, the only existing documentation is what is on the Github page. On Thursday, August 7, 2014 11:54:01 AM UTC-4, vipul choudhary wrote:

[visualization-api] Re: How to get a transparent chart ?

2014-08-07 Thread Andrew Gallant
Try using the chf parameter https://google-developers.appspot.com/chart/image/docs/chart_params#gcharts_solid_fills. The color string supports appending two hex digits to the end for alpha: chf=bg,s,8360c7a0 On Thursday, August 7, 2014 5:43:20 PM UTC-4, Laurent wrote: Nobody knows how to

[visualization-api] Charts not getting displayed in email

2014-08-07 Thread ABHI
Hi, Im trying to send a html email via Java api. message.setContent(getMessageBody(), text/html); Where in the getMessageBody() constructs html with the javascript and chart embedded. The HTML part is displayed fine in the mail received. However the javascript part / Charts part is not