[visualization-api] Re: Geochart Marker HTML Tooltips

2014-06-18 Thread IK
Sergey, just checked and thank you very much. it was a very puzzling issue as i was trying to get it to work myself for several days. thanks again, ik. -- You received this message because you are subscribed to the Google Groups Google Visualization API group. To unsubscribe from this group

[visualization-api] Re: Expanding Rows in google table

2014-06-18 Thread Bandaru Chandan Reddy
I am also searching for the same. Someone please help. Regards, Chandan Reddy -- 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

[visualization-api] want to add custome tool tip to my line chart (tool tip will have some html content like button and some text)

2014-06-18 Thread Ravindra Gharge
I am populating the chart by getting the datatable as the response from other page. so am creating json object at other side and transfer to the requesting site and their i parse the object and create the datatable and populating the chart. following my code to request the chart data :

[visualization-api] Export Pie Chart 3D - Word 2013

2014-06-18 Thread jeremjerem23
Hy guys :) I'm french, so i can't speak english as well as i want ... :( But maybe, i can explain you my problem. After that, i explain in french for french's users :) I Have a DB, it's Nagios/Centreon (monitoring operator). With this, i recover informations. I create after that a 3D pie

[visualization-api] Re: How to format the .CSV data to use Google Annotation chart??

2014-06-18 Thread Milan Shrestha
On Tuesday, June 17, 2014 9:48:20 PM UTC+5:45, Milan Shrestha wrote: I am working on WEB based data logger and receiving data in .CSV format. My data looks like this: Date,Time,Direction,Temperature,Wind Speed,Max. Speed,Dev1,a,b,c 17-06-14,15:47:28,67.5,30.50,0.70,3.02,0.91,0.20,0.20,0.00

[visualization-api] newbie looking for example

2014-06-18 Thread Roni Segoly
Hi Can someone please show me an example for using Google chart in PHP web page while updating in a loop? I have an example https://www.dropbox.com/s/x7gw7sqhuyxpqxq/g.php someone prepared for me using Ajax and JS, and all I need is addimg a bar chart to same page which will be updated same

Re: [visualization-api] Export Pie Chart 3D - Word 2013

2014-06-18 Thread 'Jon Orwant' via Google Visualization API
You can import the Google Chart as an image into Word, but you'll lose the interactivity. Jon On Wed, Jun 18, 2014 at 5:38 AM, jeremjerem23 jerem23...@gmail.com wrote: Hy guys :) I'm french, so i can't speak english as well as i want ... :( But maybe, i can explain you my problem. After

[visualization-api] Uniform scaling of both X- and Y-axis

2014-06-18 Thread Alban Hertroys
We have a case for a chart where both the X-axis and the Y-axis are dimensions in mm. The graph describes a measured contour. It would be helpful to our users if both axis would scale uniformly, meaning that any distance measured on one axis should be the same on the other axis. Grid lines

[visualization-api] Re: newbie looking for example

2014-06-18 Thread Andrew Gallant
There are a ton of examples on this forum, if you search for them. This thread https://groups.google.com/forum/#!topic/google-visualization-api/-zapZe7dH7Y[1-25-false] has a large number to work with. On Wednesday, June 18, 2014 7:50:38 AM UTC-4, Roni Segoly wrote: Hi Can someone please

[visualization-api] Re: Uniform scaling of both X- and Y-axis

2014-06-18 Thread Andrew Gallant
The only way to make this happen is to manually set your chart options to match your data. The simplest example is with a square grid. To make the grid square, given the height and width for the chart, you would need to set the chartArea.height and chartArea.width options to create a square.

[visualization-api] Timeline get selected element

2014-06-18 Thread JProject
Hello, I want to capture the selected element in my timeline, but chart.getSelection () [0]. Returns undefined. var container = document.getElementById('timeline'); chartTimeLine = new google.visualization.Timeline(container); dataTimeLine = new google.visualization.DataTable();

[visualization-api] Re: Timeline get selected element

2014-06-18 Thread Andrew Gallant
If you click an element twice in a row, the second click deselects the element, thus the selection array is empty. Index 0 of an empty array is undefined. You should test the length of the array before attempting to access its contents: function timeLineSelected(){ var selection =

Re: [visualization-api] Re: newbie looking for example

2014-06-18 Thread Andrew Gallant
The PHP examples should show you how to construct the DataTable on the back-end. If you set up a PHP page that echos the json version of the DataTable, you can use AJAX in javascript to call that page to refresh your data. It looks like you page does something similar already, you're just not

Re: [visualization-api] Re: newbie looking for example

2014-06-18 Thread Roni Segoly
I am newbie so need to go slowly My page does what it needs to to do and here is the source https://www.dropbox.com/s/x7gw7sqhuyxpqxq/g.php Someone helped me before and with these 4 gauges it works fine I need to add to my page another chart (bar) which is also updated same method So one PHP with

[visualization-api] Re: want to add custome tool tip to my line chart (tool tip will have some html content like button and some text)

2014-06-18 Thread Andrew Gallant
Answered over on StackOverflow: http://stackoverflow.com/a/24295034/613559 On Wednesday, June 18, 2014 4:29:24 AM UTC-4, Ravindra Gharge wrote: I am populating the chart by getting the datatable as the response from other page. so am creating json object at other side and transfer to the

Re: [visualization-api] Re: newbie looking for example

2014-06-18 Thread Andrew Gallant
Does your BarChart use the same data as the Gauges, or is it different data? On Wednesday, June 18, 2014 5:09:54 PM UTC-4, Roni Segoly wrote: I am newbie so need to go slowly My page does what it needs to to do and here is the source https://www.dropbox.com/s/x7gw7sqhuyxpqxq/g.php Someone

Re: [visualization-api] Alternative To Deprecated Google Chart Tools API

2014-06-18 Thread JavaJive
We'll update this list when we know more. It'll be a few months Thanks for the encouraging response, Jon, I'll be looking forward to further news. -- You received this message because you are subscribed to the Google Groups Google Visualization API group. To unsubscribe from this group and

Re: [visualization-api] Re: newbie looking for example

2014-06-18 Thread Roni Segoly
I need for different data On 19 Jun 2014 01:00, Andrew Gallant asgallant...@gmail.com wrote: Does your BarChart use the same data as the Gauges, or is it different data? On Wednesday, June 18, 2014 5:09:54 PM UTC-4, Roni Segoly wrote: I am newbie so need to go slowly My page does what it