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

2014-06-04 Thread Ananya
http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js";> https://www.google.com/jsapi "> var jdata = [ { "file": "1a24ae6b3e6fafe458ce680d9b472b85", "type": "Opened", "pc": 0, "details": "C:\\Sandbox\\briefdocument.pdf", "timestart": "2014-04-03 15:02:00" }

Re: [visualization-api] Как сделать перемещение на графике!

2014-06-04 Thread Антон Коваленко
Добрый день. То что нужно, давайте тут посмотрите, что не так? http://jsfiddle.net/SsLTn/1/ -- 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-vi

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 or a ChartRangeFilter

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" wrote: > 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,

[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;'); }

[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: google.visualization.events.addListener(

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

2014-06-04 Thread Andrew Gallant
Set the tooltip.trigger option to "selection" or "both". Setting it to "selection" shows the tooltip only when a user clicks the pie slice, setting it to "both" shows the tooltip when the user hovers over or clicks the slice. The, create a "ready" event handler that sets the selection on the

[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 cha

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 F

[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 th

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 wrote: > There are 3 sets of sizes you need to be aware of. The container height > and width, the chart height and width

[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

[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 anoth

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 to

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] 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 recommend

Re: [visualization-api] Line Chart

2014-06-04 Thread Isaac Sogunro
Thanks! I can't stop banging my head on that issue now. haha.. On Wed, Jun 4, 2014 at 4:02 PM, 'Daniel LaLiberte' via Google Visualization API wrote: > We don't have a way of dealing with the overlapping annotations at this > time. We are considering the options and how to implement. It might

Re: [visualization-api] Line Chart

2014-06-04 Thread 'Daniel LaLiberte' via Google Visualization API
We don't have a way of dealing with the overlapping annotations at this time. We are considering the options and how to implement. It might be best to avoid using too many annotations and instead rely on tooltips to show the values when the user hovers over them. On Wed, Jun 4, 2014 at 3:47 PM,

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 wrote: > Since you are not using the Google Chart date type, you should look into > what monthIndex values you are getting from your getMonthIndex() function. > > Also, sin

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 wrote: > Since you are n

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

[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 i

Re: [visualization-api] Line Chart

2014-06-04 Thread 'Daniel LaLiberte' via Google Visualization API
Since you are not using the Google Chart date type, you should look into what monthIndex values you are getting from your getMonthIndex() function. Also, since your dataValues array initializes everything to 0, if you don't change some value to a non-zero value, it will still be 0. On Wed, Jun 4

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 = d.getFullYea

[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.

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] 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.

[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 graph.

[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] 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] 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: h