Re: [visualization-api] Re: What are the exact chartType names? What chartTypes are available for use in a dashboard?

2014-08-05 Thread Steve Webster
Another exception appears to be SanKey. I believe this is a known bug that I saw on issue tracker which submitted in February. On Mon, Aug 4, 2014 at 7:47 PM, Andrew Gallant agall...@google.com wrote: The chartType property takes a string referencing the google.visualization object property

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

2014-08-05 Thread Bryan Maloney
I asked on the Blogger forum and was told to bug the GeoChart guys. Sounds like an enormous amount of buck passing going on, with nobody at all having the faintest clue. I am in regions mode. Here is one of the googleVis statements I use to generate a GeoChart: AIG - gvisGeoChart(difference,

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

2014-08-05 Thread 'Jon Orwant' via Google Visualization API
Bryan, I recommend taking your chart code and putting it up on jsfiddle.net. If it works there, then your issue is with Blogger. If it doesn't work there, then your issue is with Google Charts. If it seems like buck passing, that's because the kind volunteers who are helping you, for free, are

[visualization-api] Bubble Chart tool tip

2014-08-05 Thread TheInnovator
Hi All, The tool tip the font when you hover over a bubble looks bold. How can I remove the bold? Thanks! http://jsfiddle.net/GTpgA/75/ -- 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] Hexagons Pentagon Charts?

2014-08-05 Thread Zak Rhyno
Is it possible to use this library to make hexagons pentagon charts? I was looking at what can be done but I can figure out the answer to this question. -- You received this message because you are subscribed to the Google Groups Google Visualization API group. To unsubscribe from

Re: [visualization-api] Hexagons Pentagon Charts?

2014-08-05 Thread 'Jon Orwant' via Google Visualization API
Nope, sorry! Jon On Tue, Aug 5, 2014 at 12:13 PM, Zak Rhyno zakrh...@gmail.com wrote: Is it possible to use this library to make hexagons pentagon charts? I was looking at what can be done but I can figure out the answer to this question. -- You received this message because you are

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

2014-08-05 Thread vipul choudhary
Hi Andrew, Thank You for sharing information about pointSize and height top properties. That resolved my two issues. But for the double Y axis, can you please provide any code snippet example for the double Y axis for Google Angular Chart. For this I will have two data Array combination

Re: [visualization-api] Re: Tooltip Font Misbehaving

2014-08-05 Thread CeBe
7, 8, and 9 all behaving the same. When I look at this JSFiddle in IE, it looks fine. When I save the code as HTML and view it on my site, the font changes on the bold again. Something is messing it up on the site with CSS, but since I can’t drill down to the circle elements using IE dev tools,

[visualization-api] Re: Google visualization dashboard Pie display

2014-08-05 Thread saKw
Hi Andrew, When I remove the PieChart from the Dashboard.bind call, i dont see pie chart image in my page. and also i get an error that says Invalid column index 2. Should be an integer in the range [0-1]. Thanks On Friday, August 1, 2014 8:38:08 PM UTC-4, Andrew Gallant wrote: You need to

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

2014-08-05 Thread Bryan Maloney
In addition to the googleVis command, here is the output from that command. For the Alabama entry, [ AL, AL: $22 million, 22186 ] I wish to suppress AL and suppress 22186 and have only AL: $22 million appear on mouseover. !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Strict//EN

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

2014-08-05 Thread uoʎɐↃ ɐᴚuɐnɾ
Hi there and thanks in advance for any help provided. I'm coding a table in which one of the columns shows money-related cyphers so, i set the column to number and format it with the f: ' whatever-format ' option using a function that gives a string including the formated number plus the

[visualization-api] Re: Bubble Chart tool tip

2014-08-05 Thread Andrew Gallant
You cannot change the font weight in the tooltips, but you can create custom HTML tooltips https://google-developers.appspot.com/chart/interactive/docs/customizing_tooltip_content#custom_html_content which allow you to style your content however you like. On Tuesday, August 5, 2014 12:08:27

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

2014-08-05 Thread Andrew Gallant
In order to make that chart, you need a data set that contains both the height and weight data series together. Assuming that both data series are available in your json variable, you could use something like this to create the data: function processArrayForWeight(json) { var chartData =

Re: [visualization-api] Re: Tooltip Font Misbehaving

2014-08-05 Thread Andrew Gallant
I can't replicate this on my end. Can you post a link to the misbehaving page, or attach an HTML file that exhibits the behavior? On Tuesday, August 5, 2014 12:57:45 PM UTC-4, CeBe wrote: 7, 8, and 9 all behaving the same. When I look at this JSFiddle in IE, it looks fine. When I save the

[visualization-api] Re: Google visualization dashboard Pie display

2014-08-05 Thread Andrew Gallant
Can you post the current version of the code you are using, along with a sample queryObject I can use to test this? On Tuesday, August 5, 2014 1:46:15 PM UTC-4, saKw wrote: Hi Andrew, When I remove the PieChart from the Dashboard.bind call, i dont see pie chart image in my page. and also

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

2014-08-05 Thread Andrew Gallant
The GeoCharts don't support custom tooltips yet, so the range of what you can do is a bit limited. If you want to get rid of the second row from the tooltips, the solution is to use a tooltip role column to override the contents of the row and null them out. The tooltip will render with a

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

2014-08-05 Thread Andrew Gallant
You need to use the javascript unicode value for your characters, not the HTML unicode value. If you have a function that creates HTML-encoded characters, you can convert a character to javascript unicode with this: function decodeHTMLUnicode (str) { var d = document.createElement('div');

[visualization-api] Re: Google visualization dashboard Pie display

2014-08-05 Thread saKw
Code-- function drawChart() { var data = new google.visualization.DataTable(); data.addColumn('string', 'mdn'); data.addColumn('string', 'category'); data.addColumn('number', 'kbUsage'); //alert(inside drawChart);

[visualization-api] Pass JSON using java servlet to populate the simple Column chart

2014-08-05 Thread George Rosario
Hi. I am new to google charts , I am building a simple application which takes data from mysql database into a servlet and forms a JSON object , Which is passed to XHTML file where i want to display a coloum chart using that JSON object. I am able to create a JSON object in java. But i dont