Re: [visualization-api] Re: Scatter bubble chart

2014-06-04 Thread Ananya
do the scatter data points get darker in normal scatter chart if they overlap and can we zoom in upto nano seconds? On Fri, May 30, 2014 at 9:41 PM, Ananya ojhaananya.o...@gmail.com wrote: Thank you On Fri, May 30, 2014 at 9:05 PM, Andrew Gallant asgallant...@gmail.com wrote: Call the

[visualization-api] Re: Google visualization api gives error with daylightsavings time

2014-06-04 Thread Stef Coenen
Alright, I know the problem occurs in my time zone (UTC+1) but I'm not sure if the problem happens in every time zone. Because it is a very specific problem. Below you can find a screenshot of the plunker in my situation.

[visualization-api] change colors for printing

2014-06-04 Thread it
I have these options: hAxis: {textStyle: {color: '#fff'},gridlines:{color: '#4a4a4a', count: 12}, baselineColor:'#fff' }, vAxis: {textStyle: {color: '#fff'},gridlines:{color: '#4a4a4a', count: 5}, baselineColor:'#fff' }, because i have dark background. Is any way when i print webpage change:

[visualization-api] Re: Chart editor error when using scatter charts with tooltips

2014-06-04 Thread Zoltan Szabo
I noticed another problem, HTML tooltips displayed as annotations in the chart editor: http://jsfiddle.net/KhZLG/2/ On Wednesday, May 28, 2014 10:15:44 AM UTC+3, Zoltan Szabo wrote: Hi, I have an issue with the chart editor. If we have a scatter chart with a string column configured as

[visualization-api] Re: Geochart: Problem in iOS

2014-06-04 Thread Jeremy Faller
You're right, iOS 7.1 doesn't fire the alert. I suspect you'd have problems getting Drew's solution working for you. There's subtlety (read:crap) in our event routing would likely make it difficult to make it work. I will speak with the Geo engineer about this, and likely file some bugs on our

[visualization-api] Want to Set the Tooltip as default within the graph

2014-06-04 Thread karthik ram
Hi, I have implemented the Google Graph API to display the pie chart. Also I have implemented the Tooltip, this feature is really awesome. But I wanted to show the content being displayed mouse over as default. So that user can see the tool-tip content without placing the cursor over the

[visualization-api] Line Chart

2014-06-04 Thread TheInnovator
Why does my line chart continue when there is not value for a point? As you can see below, the two lines end at June and July but it should actually stop at June for the blue line and May for the purple line.

Re: [visualization-api] Line Chart

2014-06-04 Thread 'Daniel LaLiberte' via Google Visualization API
You didn't provide your data or options for us to look at, but since you indicate that the lines extend one month too far, I suspect you are using date values with months being one too high. That is, when you create Date values with new Date(, M, dd), the M values start at 0, not 1. This is

[visualization-api] AnnotatedTimeLine has quit working

2014-06-04 Thread 'ct8...@yahoo.com' via Google Visualization API
I'm using the annotatedtimeline / AnnotatedTimeLine API to produce a timeline in an application I've developed. I write a program dynamically that produces the timeline. An example of the program that gets written follows. This program is executed in an iframe. html

Re: [visualization-api] Line Chart

2014-06-04 Thread Isaac Sogunro
here's my code using sharepoint as a data source var dataValues = [ ['Oct', 0, 0], ['Nov', 0, 0], ['Dec', 0, 0], ['Jan', 0, 0], ['Feb', 0, 0], ['Mar', 0, 0], ['Apr', 0, 0], ['May', 0, 0], ['Jun', 0, 0], ['Jul', 0, 0], ['Aug', 0, 0], ['Sep', 0, 0] ]; var d = new Date(); var curYear =

[visualization-api] Re: AnnotatedTimeLine has quit working

2014-06-04 Thread 'Craig' via Google Visualization API
Active X Filtering was interfering with the display of the timeline. I turned that off and it worked as intended. I apologize for the false alarm. On Wednesday, June 4, 2014 12:01:46 PM UTC-4, Craig wrote: I'm using the annotatedtimeline / AnnotatedTimeLine API to produce a timeline in

Re: [visualization-api] Re: AnnotatedTimeLine has quit working

2014-06-04 Thread 'Daniel LaLiberte' via Google Visualization API
Thanks for the update, and alerting us that active x filtering could cause this problem for others. On Wed, Jun 4, 2014 at 2:13 PM, 'Craig' via Google Visualization API google-visualization-api@googlegroups.com wrote: Active X Filtering was interfering with the display of the timeline. I

Re: [visualization-api] Line Chart

2014-06-04 Thread Isaac Sogunro
One more thing. If you look at the first image I attached earlier, how do I keep the line chart numbers from overlapping like they do. I can't tell what some of the numbers are. Any ideas? On Wed, Jun 4, 2014 at 12:13 PM, 'Daniel LaLiberte' via Google Visualization API

Re: [visualization-api] Line Chart

2014-06-04 Thread Isaac Sogunro
Thanks! I will look into your suggestion. On Wed, Jun 4, 2014 at 12:13 PM, 'Daniel LaLiberte' via Google Visualization API google-visualization-api@googlegroups.com wrote: Since you are not using the Google Chart date type, you should look into what monthIndex values you are getting from your

Re: [visualization-api] change colors for printing

2014-06-04 Thread 'Mitchell Foley' via Google Visualization API
Hi DSave, Unfortunately, there isn't currently an easy way to use css to modify google charts. However, I think there is a solution. You can draw two versions of your chart, one for printing and one for viewing. You can then toggle which one is visible using css and media='print'. I also

Re: [visualization-api] Line Chart

2014-06-04 Thread TheInnovator
One more line chart question please. Do you know why when I increase the height of my chart above 65%, the months along the x-axis disappear. The height of my HTML table is 100%. How can I fix that?

Re: [visualization-api] Line Chart

2014-06-04 Thread 'Daniel LaLiberte' via Google Visualization API
There are 3 sets of sizes you need to be aware of. The container height and width, the chart height and width, and the chartArea height and width, as well as the chartArea left and top. The chartArea is surrounded by a top area, bottom area, left area and right area. I suspect you are trying

[visualization-api] table row leading to event

2014-06-04 Thread ali
I would like to know, how can i implement a function, where if i click on the table's row column 'country' (i.e. USA), the barchart would change state to show all 'region/state' within USA. I am little unsure, if i should implement this logic within select event or would i need to create

[visualization-api] Re: Add Total Row to Table Visualization

2014-06-04 Thread Sudhir Kesharwani
Thanks bp and Amit, you saved me another day :) On Tuesday, 30 July 2013 08:44:36 UTC-5, Amit Phule wrote: Its a great post. You just saved my day. Just want to update a line. In Above function add_total_row() at end need to add below statement, it will add the newly created total row to

Re: [visualization-api] Line Chart

2014-06-04 Thread Isaac Sogunro
Makes sense! http://isaac.issharepoint.com/Web%20Part%20Page/508Dashboard.aspx Thank you sir. On Wed, Jun 4, 2014 at 4:49 PM, 'Daniel LaLiberte' via Google Visualization API google-visualization-api@googlegroups.com wrote: There are 3 sets of sizes you need to be aware of. The container

[visualization-api] Format last row of the Table

2014-06-04 Thread Sudhir Kesharwani
I saw another question related to this but the code did not work for me.I have a table on which i have added a total row, the row is formatted like a regular table row, I would like it highlight the total row so it looks different. Any option, must consider this in the upcoming updates to

Re: [visualization-api] Re: Scatter bubble chart

2014-06-04 Thread Andrew Gallant
No, the points do not get darker if they overlap, and the smallest time resolution is milliseconds. On Wednesday, June 4, 2014 2:37:01 AM UTC-4, Ananya Ojha wrote: do the scatter data points get darker in normal scatter chart if they overlap and can we zoom in upto nano seconds? On Fri,

[visualization-api] Re: Annotation chart just won't update/refresh on an interval no matter what I try

2014-06-04 Thread Andrew Gallant
If you are not going to use the annotations or range filter features of the AnnotationChart, you may be better served with a plain LineChart. The AnnotationChart is new and somewhat unpolished around the edges, whereas the LineChart has most of the kinks worked out. Is that link to the new

[visualization-api] Re: table row leading to event

2014-06-04 Thread Andrew Gallant
First off, the API does not identify which column is clicked when the user selects a row in the table, so you can't tell when the user clicks the country column. You can use the country information to filter the data used to draw the BarChart, though:

[visualization-api] Re: Format last row of the Table

2014-06-04 Thread Andrew Gallant
You can style the last row by setting the style or className properties of the cells in that row, eg: var lastRowIndex = data.getNumberOfRows() - 1; for (var i = 0; i data.getNumberOfColumns(); i++) { data.setProperty(lastRowIndex, i, 'style', 'font-weight: bold; font-size: 1.5em;'); }

Re: [visualization-api] Re: Scatter bubble chart

2014-06-04 Thread Ananya
May I know how to differentiate the data points if they overlap. And how to zoom upto milliseconds? On 5 Jun 2014 05:34, Andrew Gallant asgallant...@gmail.com wrote: No, the points do not get darker if they overlap, and the smallest time resolution is milliseconds. On Wednesday, June 4, 2014

Re: [visualization-api] Re: Scatter bubble chart

2014-06-04 Thread Andrew Gallant
If your data is entered as datetime or timeofday, you can zoom in to the millisecond level by using the explorer option https://developers.google.com/chart/interactive/docs/gallery/bubblechart#Configuration_Options or a ChartRangeFilter