Re: [visualization-api] Visualization Playground Broken Link

2014-08-04 Thread Visual1zer
Thanks for the update, and great that you found an alternative! Cheers, On Thursday, 31 July 2014 15:15:31 UTC+1, trybka wrote: This is affecting the whole playground. We are working on alternative methods of hosting more interactive sample charts (that you can edit the code and see

Re: [visualization-api] Re: Visualization Playground Broken Link

2014-08-04 Thread Visual1zer
Thanks for the update sounds great ! On Sunday, 3 August 2014 03:32:09 UTC+1, orw...@google.com wrote: Update! Thanks to Tom Rybka, we'll have a solution within a week. Jon On Sat, Aug 2, 2014 at 1:10 PM, joe...@gmail.com javascript: wrote: It is too sad! To be honest, such tool is

[visualization-api] Have different images as markers under graph nodes.

2014-08-04 Thread Inte snäll
As it is now I have text as toolTip hint under the graph nodes, but my question is, is it possible to have icons instead? Like flotr2 have. http://www.humblesoftware.com/flotr2/index#!advanced-markers var dt = new google.visualization.DataTable(); dt.addColumn('date',

Re: [visualization-api] Have different images as markers under graph nodes.

2014-08-04 Thread 'Jon Orwant' via Google Visualization API
https://developers.google.com/chart/interactive/docs/customizing_tooltip_content#custom_html_content shows you how to do this. The example even uses flags, just like you ordered! Jon On Mon, Aug 4, 2014 at 7:19 AM, Inte snäll nije...@gmail.com wrote: As it is now I have text as toolTip hint

[visualization-api] Re: Have different images as markers under graph nodes.

2014-08-04 Thread Inte snäll
Sorry, but its not the same, I was a bit unclear. I want the annotation to display html (an image) directly into the graph and not having to hover over a dot in the graph in order to display an image. dt.addColumn({type: 'string', role: 'annotation', 'p': {'html': true}}); //I want the

Re: [visualization-api] Re: Have different images as markers under graph nodes.

2014-08-04 Thread 'Jon Orwant' via Google Visualization API
In that case, use an overlay: https://developers.google.com/chart/interactive/docs/overlays Jon On Mon, Aug 4, 2014 at 7:49 AM, Inte snäll nije...@gmail.com wrote: Sorry, but its not the same, I was a bit unclear. I want the annotation to display html (an image) directly into the graph and

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

2014-08-04 Thread Bryan Maloney
I'm using the gvisGeoChart function in googleVis to generate choropleth maps, USA, by state. I wish to know the following: 1. How do I embed the GeoChart object in a Blogger website post? Blogger is part of Google, it should be easy? HAHAHAHAHAHAHAHAHAHAHAHAHAHA! 2. How do I control what is

[visualization-api] Find a user on Google+ through API

2014-08-04 Thread Martin Schneider
Hi! Sorry, I'm almost sure this is the wrong group - please point me to the right forum - I couldn't find one. I'd like to know through API if a certain mail address is connected with a Google+ profile (yes or no will do, so I can point people in the right direction). Thanks and best regards

[visualization-api] Is it possible to apply controls to a Calendar chart?

2014-08-04 Thread codejak
Hi! Is there any way to add/link properties to the core data set for a calendar (e.g., sex, age, location) and build controls based on these properties that function as filters on the calendar. Example: I want to display number of logins of users per day on a calendar chart. I also want to

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

2014-08-04 Thread codejak
Hi! I can't find a document that defines the full set of chart types and the exact name to be used for the chartType wrapper property. Is there such a list or some other rule of finding out? Can all chart types actually be used in a ChartWrapper? I have not been able to make it work for a

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

2014-08-04 Thread Cicely Behne
Looks fine in Chrome/Firefox and Chrome dev tools didn't reveal anything that may be causing the fonts to appear incorrectly in IE. Client uses IE mainly, so would like to figure out the cause in IE. On Fri, Aug 1, 2014 at 8:27 PM, Andrew Gallant agall...@google.com wrote: If it works fine in

[visualization-api] specifying N number of x-axis when data is only one

2014-08-04 Thread Neil Camara
For example, the data I received is { hour : 2:00, totalcount : 10 }, only 1 data. What I'd like Google Charts to do is display like 6 hours in the x-axis like 1:00 2:00 3:00 4:00 5:00 3:00 of course, my column totalcount data will only appear above 2:00. I tried the code below but Google

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

2014-08-04 Thread Andrew Gallant
I don't know about embedding in a Blogger post; the charts require javascript, and some blogging platforms do not allow users to post javascript. You may have better luck asking on StackOverflow for help embedding javascript in Blogger. For your second question, are you using regions mode or

[visualization-api] Re: Find a user on Google+ through API

2014-08-04 Thread Andrew Gallant
This is not the right place for Google+. Try the Google+ API Documentation https://developers.google.com/+/api/, or the Google+ API Developer's page https://plus.sandbox.google.com/+GooglePlusDevelopers/posts. On Monday, August 4, 2014 11:07:09 AM UTC-4, Martin Schneider wrote: Hi! Sorry,

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

2014-08-04 Thread Andrew Gallant
The chartType property takes a string referencing the google.visualization object property for the chart you want to draw. For example, if you want to draw a Line Chart, the normal Line Chart object is: google.visualization.LineChart so when using a ChartWrapper, you would set the chartType

[visualization-api] Re: Is it possible to apply controls to a Calendar chart?

2014-08-04 Thread Andrew Gallant
Yes, you should be able to use any of the Controls https://google-developers.appspot.com/chart/interactive/docs/gallery/controls with a Calendar chart. When building the ChartWrapper for the Calendar, make sure you set the view parameter to exclude the columns you don't want the Calendar to

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

2014-08-04 Thread Andrew Gallant
Which version of IE? On Monday, August 4, 2014 3:03:12 PM UTC-4, CeBe wrote: Looks fine in Chrome/Firefox and Chrome dev tools didn't reveal anything that may be causing the fonts to appear incorrectly in IE. Client uses IE mainly, so would like to figure out the cause in IE. On Fri, Aug

[visualization-api] Re: specifying N number of x-axis when data is only one

2014-08-04 Thread Andrew Gallant
You need to specify the hAxis.ticks option. The ticks option takes an array of values or object. Values point to the location where a tick mark (and label) should be placed. Objects have v (required) and f (optional) properties, where v is the value to place a tick mark at, and f is the

[visualization-api] Re: specifying N number of x-axis when data is only one

2014-08-04 Thread Neil Camara
Awesome! I'll try it soon! :) Thanks! On Monday, August 4, 2014 6:57:49 PM UTC-5, Andrew Gallant wrote: You need to specify the hAxis.ticks option. The ticks option takes an array of values or object. Values point to the location where a tick mark (and label) should be placed. Objects

[visualization-api] Re: specifying N number of x-axis when data is only one

2014-08-04 Thread Neil Camara
It worked Andrew and it looks beautiful! :) Will it work for dates? If so, what would be the values of ticks? -- 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

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

2014-08-04 Thread Andrew Gallant
I suspect that your dates are not showing up because the chart is too short; if you make it taller (or use the chartArea.height and chartArea.top options to make the inner height shorter and/or move it up higher) there will be more space for the axis labels to draw. The second y-axis should be

[visualization-api] Re: specifying N number of x-axis when data is only one

2014-08-04 Thread Andrew Gallant
Yes, it will works for dates, just use Date objects instead of the timeofday arrays: hAxis: { ticks: [new Date(2014, 7, 1), new Date(2014, 7, 2), new Date(2014, 7, 3), new Date(2014, 7, 4)] } On Monday, August 4, 2014 8:12:05 PM UTC-4, Neil Camara wrote: It worked Andrew and it looks

[visualization-api] Re: specifying N number of x-axis when data is only one

2014-08-04 Thread Neil Camara
Cool! I'll try that later. :) Thanks again! On Monday, August 4, 2014 7:19:22 PM UTC-5, Andrew Gallant wrote: Yes, it will works for dates, just use Date objects instead of the timeofday arrays: hAxis: { ticks: [new Date(2014, 7, 1), new Date(2014, 7, 2), new Date(2014, 7, 3), new