[visualization-api] Re: Issuse on Click event in google org chart.

2012-09-24 Thread asgallant
This is a bit trickier, as the expand/collapse doesn't trigger a full redraw - it works with the data as of the moment the draw call was originally made. So if you change the img src in javascript, it gets rewritten when you expand/collapse. If you change it in the DataTable, it doesn't take

[visualization-api] Re: Google Charts with PHP and MySQL

2012-09-24 Thread Barbara Gerstl
Hello Diana! Thank you very much for showing the whole process on how to combine Google Graph API with a MySQL-Database. That is exactly what I am looking for. I tried to rebuild your example and I am having problems with the structure of the database/field settings. Can you show me structure

[visualization-api] how to do not show decimals in vAxis?

2012-09-24 Thread Patrike
My LineChart are showing some decimals... but I have only integers to show...do I have an option to do not show decimals, instead of show only integers? Thanks. -- You received this message because you are subscribed to the Google Groups Google Visualization API group. To view this

[visualization-api] Re: Always Show Tooltips on Line Chart

2012-09-24 Thread Patrike
I was just looking for that too... On Sunday, September 9, 2012 9:48:57 PM UTC-3, mda90 wrote: I'm using the Google Charts Line Chart and would like to know if there is a way to make the tooltips always show. Right now, you have to hover over the points to make the data show in the tooltip.

[visualization-api] issue with query language

2012-09-24 Thread lorenzo vigentini
hi everyone, i'm having some troubles with a query and i can't seem to be able to figure out how to make it work. so here is the problem. i have a table in a google spreadsheet with the following columns (they should be straightforward and in the query script i use the column values):

[visualization-api] Draw line chart with 2000 points

2012-09-24 Thread codeguyross
Hello all, I am trying to draw a line chart with 2000 points and was wondering if this is possible with the google graph library. I tried it with asp.net graph library and it is way to slow on its render. It takes 10-20 seconds. Thanks, codeguyross -- You received this message because you

[visualization-api] Help with xml

2012-09-24 Thread thecatz
Hello, i'm a real newbie on javascript, i only know php, i realy need help to how populate my chart with an xml. On all example of the documentation the data are directly on the javascript, and i need to import the data from a xml. 1st i rlly dont know how to make this on javascript, but only

[visualization-api] Re: Issuse on Click event in google org chart.

2012-09-24 Thread selva
Thank you so munch. Its working very nice. Here I added some css. http://jsfiddle.net/w8Ytq/2/ http://jsfiddle.net/asgallant/w8Ytq/ -- You received this message because you are subscribed to the Google Groups Google Visualization API group. To view this discussion on the web visit

[visualization-api] Re: Draw line chart with 2000 points

2012-09-24 Thread asgallant
2000 data points draws quite fast: http://jsfiddle.net/asgallant/jMzHB/ With so many data points, the graph can become difficult to read; you might be interested in using a ChartRangeFilter to help your users out: http://jsfiddle.net/asgallant/jMzHB/1/ On Sunday, September 23, 2012 7:57:54

[visualization-api] Re: issue with query language

2012-09-24 Thread asgallant
The query language is insufficiently sophisticated to do what you want. You will have to filter out the values you want using the DataTable methodshttps://developers.google.com/chart/interactive/docs/reference#DataTable, and perhaps the group function

[visualization-api] Re: Issuse on Click event in google org chart.

2012-09-24 Thread asgallant
You're welcome. On Monday, September 24, 2012 10:54:59 AM UTC-4, selva wrote: Thank you so munch. Its working very nice. Here I added some css. http://jsfiddle.net/w8Ytq/2/ http://jsfiddle.net/asgallant/w8Ytq/ -- You received this message because you are subscribed to the Google Groups

Re: [visualization-api] Re: GeoChart : Change mouse cursor

2012-09-24 Thread Carlos Moreira
hello asgallandt did you ever succeed to complete that example http://jsfiddle.net/asgallant/82TYA/5/ ? I'm trying to do the same, also trying to disable that mouseover effect with the stroke-width variable, but I can't find a solution. New paths just get drawn over it.. It would be great if

[visualization-api] Re: Google Charts with PHP and MySQL

2012-09-24 Thread asgallant
You can extrapolate from the code that the table has 6 columns: PLACA, S1, S2, S3, S4, S5. On Monday, September 24, 2012 10:15:44 AM UTC-4, Barbara Gerstl wrote: Hello Diana! Thank you very much for showing the whole process on how to combine Google Graph API with a MySQL-Database. That is

[visualization-api] Re: how to do not show decimals in vAxis?

2012-09-24 Thread asgallant
What you do here depends on what the actual cause of the decimals appearing is. The first is caused by gridlines falling on non-integer values (ie, if your axis goes from 0-10, you get values of 0, 2.5, 5, 7.5, and 10 on the axis); the second is having an unwanted significant digit on the axis

Re: [visualization-api] Re: GeoChart : Change mouse cursor

2012-09-24 Thread asgallant
I was about to say no, because of the timing issue, but then I remembered a trick I recently learned in jQuery which actually makes this work: http://jsfiddle.net/asgallant/82TYA/63/. It's not perfect, but it mostly works. You might be able to adapt that to your needs. The major issue is

Re: [visualization-api] Re: GeoChart : Change mouse cursor

2012-09-24 Thread Carlos Moreira
That's great anyway asgallant! Thanks for sharing! It will be usefull. cheers Segunda-feira, 24 de Setembro de 2012 20:07:28 UTC+2, asgallant escreveu: I was about to say no, because of the timing issue, but then I remembered a trick I recently learned in jQuery which actually makes this

[visualization-api] Re: Line chart with multiple series on multiple axes

2012-09-24 Thread Gizamo
InterpolateNulls and the focusTarget:Category behaviors are exactly what I needed. I was unaware of InterpolateNulls, and the focusTarget behavior wasn't working earlier because I did not put the x values in proper order. I had done one series and then the next, and they had overlapping x