Re: [visualization-api] DateRangeFilter change trigger draw on chart outside the dashboard

2016-05-18 Thread Giulio Mastrosanti
AaaaHh got it! great! MANY THANKS you for your help and sorry for wasting your time, Giulio Il giorno mercoledì 18 maggio 2016 22:09:33 UTC+2, Daniel LaLiberte ha scritto: > > Now I understand. You have a 'ready' listener on your dashboard that > calls caricaAscoltiM, so this will

Re: [visualization-api] DateRangeFilter change trigger draw on chart outside the dashboard

2016-05-18 Thread Giulio Mastrosanti
the same thread. > > But I am glad you have got it working well enough for your needs. > > On Wed, May 18, 2016 at 3:21 PM, Giulio Mastrosanti <giu...@bitbazar.com > > wrote: > >> Hi Daniel, >> >> I was setting up a demo page for you, >> but I have noticed tha

Re: [visualization-api] DateRangeFilter change trigger draw on chart outside the dashboard

2016-05-18 Thread Giulio Mastrosanti
Hi Daniel, I was setting up a demo page for you, but I have noticed that the second chart had an animation: {"startup": true,"duration": 500}, in the options since I have already got problems with animation with the the dashboard, I have removed the option and now it seems OK, so it

[visualization-api] DateRangeFilter change trigger draw on chart outside the dashboard

2016-05-18 Thread Giulio Mastrosanti
HI, I have on one page a dashboard with an AreaChart and a DateRangeFilter to filter it, but there's also another AreaChart independent from the dashboard. I've noticed that, changing the DateRangeFilter, also the external AreaChart is redrawn. is this a normal behaviour and how can it be

[visualization-api] Re: How to call data to be used for the graph from a file on the FTP server

2016-05-17 Thread Giulio Mastrosanti
well, I think you should read the data on the server side using AJAX, just as I do for interrogating a database. from my web page I do an AJAX call to a php file on the server, that performs a query on the database and then sends back the data in JSON format, that then is used by javascript to

[visualization-api] Re: How to call data to be used for the graph from a file on the FTP server

2016-05-17 Thread Giulio Mastrosanti
well, I think you should read the data on the server side using AJAX, just as I do for interrogating a database. from my web page I do an AJAX call to a php file on the server, that performs a query on the database and then sends back the data in JSON format, that then is used by javascript to

[visualization-api] Re: Google Charts don't render in outlook

2016-05-17 Thread Giulio Mastrosanti
Hi, I'm a beginner in this forum and as I beginner I'll answer you: I'm quite sure that's simply because mail client will not execute the javascript necessary to draw the chart http://stackoverflow.com/questions/3054315/is-javascript-supported-in-an-email-message Giulio Il giorno martedì 17

Re: [visualization-api] dot as grouping separator on vaxis data

2016-05-17 Thread Giulio Mastrosanti
Daniel, thank you so MUCH! I wasn't aware of the possibility os settings the language on load, it solved my symbol problem, and I think will help me on much more ways. thanks again! the grouping symbol is automatically determined based on the locale, so if > you add the 'language' property

Re: [visualization-api] dot as grouping separator on vaxis data

2016-05-17 Thread Giulio Mastrosanti
addendum: I'm also trying if it could help specifying a format using ICU standard, and I did try 'vAxis': { 'format': '#.###' }, but that shows me the values without any grouping symbol and a pattern like: 'vAxis': { 'format': '#.###,#' }, results in chart not displaying and a 'Malformed

Re: [visualization-api] dot as grouping separator on vaxis data

2016-05-17 Thread Giulio Mastrosanti
Hi Daniel, thank you for your answer, but unfortunately I still see commas as group separator for the numbers on the vAxis while I was able to correctly format the generated data for the hAxis, that's a date here it is my code for chart creation, including your suggestion ( the AreaChart is

Re: [visualization-api] dot as grouping separator on vaxis data

2016-05-17 Thread Giulio Mastrosanti
Hi Daniel, thanks so much for you answer, but I did try it without success. I'm able to format as I want the hAxis generated data, that's in date format, but trying to apply your suggestion does not seem to solve the problem, here a little snippet of code ( the AreaChart id generated using a

[visualization-api] dot as grouping separator on vaxis data

2016-05-17 Thread Giulio Mastrosanti
HI, cant find a way to format the vaxis numbers on a AreaChart created by a ChartWrapper linked to a Dashboard I have managed to format correctly the data loaded using a formatter: formatter = new google.visualization.NumberFormat({fractionDigits: 0, groupingSymbol:'.'}); and applying it to