[visualization-api] Datatables into any chart

2016-01-06 Thread vivek pandey
Hi Guys, I am displaying a set of data ( data is in table format and data is dynamic) in jsp using jquery datatable plugin with features of the pagination and i want to generate a google chart for the data which are getting displayed over the client side. Please provide some valuable

[visualization-api] HTML tooltip in Sankey charts

2016-01-06 Thread dunbar . nick
I have got Sankey charts working with custom HTML tooltips but can't get the formatting of the tooltip box to look right - it's too elongated and the HTML tags in the tooltip text are ignored. Can anyone help with this? JSFiddle is here: http://jsfiddle.net/t9e3dcy3/5/ Thanks, Nick -- You

Re: [visualization-api] Trouble with Chart Control

2016-01-06 Thread 'Daniel LaLiberte' via Google Visualization API
Brent, I believe we have some issues with setting the 'state' of the DateRangeFilter, so if you can take that option out, it might work better. But your dates should not be formatted as strings that way. If you need to use strings, use the form "Date(, MM, dd, hh, mm, ss)" whereMM is the

Re: [visualization-api] HTML tooltip in Sankey charts

2016-01-06 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Nick, In order to get the HTML code in your custom tooltips to show up as actual HTML, you have to set the 'html' property to true for that column, row, or cell. Here is your example with me setting the column property 'html' to true: http://jsfiddle.net/d5qoLu2x/ On Wed, Jan 6, 2016 at 11:45

Re: [visualization-api] HTML tooltip in Sankey charts

2016-01-06 Thread Nick Dunbar
Thanks Sergey! On Wed, Jan 6, 2016 at 4:56 PM, 'Sergey Grabkovsky' via Google Visualization API wrote: > Hi Nick, > > In order to get the HTML code in your custom tooltips to show up as actual > HTML, you have to set the 'html' property to true for

[visualization-api] use file loader.js in my company's server ?

2016-01-06 Thread Jack Lau
Hi all, Due to my company policy, our source code does not allowed to point outside our system (e.g. "https://www.google.com/jsapi; or "https://www.gstatic.com/charts/loader.js;). Is it allowed to download the source code of file loader.js and then run in company's server ? Is the license

[visualization-api] Onclick Event

2016-01-06 Thread vijay main
Hello sir, I am new to google chart. Could you please tell me how to fire on click event using Pie chart. Thanks in advance. -- 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

Re: [visualization-api] Trouble with Chart Control

2016-01-06 Thread Brent Bensten
Hello, I removed the “state” and that helped. I still have an issue where the date the is being fed in is being tied to Epoch. When I pull the data from the database I use the following "$temp[] = array('v' => (int) date('mdY',strtotime($r['INSERT_TIME'])));” I then try to build the

Re: [visualization-api] Trouble with Chart Control

2016-01-06 Thread 'Daniel LaLiberte' via Google Visualization API
I don't know the language you are using on your server, but I would guess you want something more like this: "$temp[] = array('v' => (int) date('Date(Y, m, d) ',strtotime($r['INSERT_TIME'])));” I don't know what you mean by "tied to Epoch", but you may need to be aware of timezone issues. On