Re: [visualization-api] About Chart API License

2016-05-17 Thread 2008 tmz
Thank you so much Since there may be less than words , supplements . Web program that I want to use is one that has been installed in the company's server , is what can only be used with the employees limited . On that program , I would sense that the use GoogleAPI over the Internet , do you no

[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] Charts now formatting data type "number"?

2016-05-17 Thread moresugarmore
Hi all, I noticed that sometime recently my google charts have started automatically formatting the columns I've labeled as type = "number". Problem with this is I have columns that have numbers such as Year, or IDs. None of these should be given commas. But at the same time I went to keep

[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 'Daniel LaLiberte' via Google Visualization API
Sorry, my mistake. There is potential to use the groupingSymbol, but it is not used. A few other format options are supported, including scaleFactor and prefix, but not groupingSymbol. I suspect one reason for this is that the grouping symbol is automatically determined based on the locale, so

[visualization-api] Re: Diff chart: "Current" & "Previous" labels customization

2016-05-17 Thread letuscodeio
I had to do a couple of things to fix this issue: 1) Put mouseover event on chart with a function called "selectHandler" google.visualization.events.addListener(barChartDiff, 'onmouseover', function (rowColumn) { selectHandler(); }); 2) After I fixed initiated the

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] Google Charts don't render in outlook

2016-05-17 Thread tarikny500work
I have a simple HTML page that displays a 3D Google Chart, it renders fine in a Browser, but when I send the same HTML page (e.g. source code) and set it as the body of an email. Outlook won't render the chart. When I view the source from the outlook email and copy it and save it as an HTML

[visualization-api] Google time line chart - how to hide the text circled in red under the rows

2016-05-17 Thread Deepika Kommuru
Here is an example js fiddle http://jsfiddle.net/Lq7pj5ka/ I have tried axisFontSize : 0 and hAxis options like textPosition: 'none' , baselineColor: '#FF' etc but they dont work. -- You received this message because you are subscribed to the Google Groups "Google Visualization API"

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

2016-05-17 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Giulio, The axis tick values are generated, so formatting your data won't help. Instead, you have to specify a format in your vAxis options. If you need the groupingSymbol option, there is an undocumented way you can get it. options: { vAxis: { gridlines: { count: -1 }, // variable

[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

Re: [visualization-api] display the legend of a google bar chart on multiple line in position "bottom"

2016-05-17 Thread 'Daniel LaLiberte' via Google Visualization API
Sorry Lucie, we don't have a way of showing multiple lines of legend item labels. This would be a good suggestion that you could add to the Issues list: https://github.com/google/google-visualization-issues/issues On Tue, May 17, 2016 at 8:17 AM, Lucie W wrote: > Hi,

[visualization-api] display the legend of a google bar chart on multiple line in position "bottom"

2016-05-17 Thread Lucie W
Hi, I would like display the entire legend of my chart. The legend is in position "bootom". For exemple : There to see all the legend I must to click on the arrow. I would like display my legend in four(or less) lines to see all the legend. I hope you understand me. Thank you. -- You

Re: [visualization-api] About Chart API License

2016-05-17 Thread 'Jon Orwant' via Google Visualization API
It's fine to use as is, although it requires an Internet connection to work. No license agreement needed. Jon On Tue, May 17, 2016 at 6:00 AM, 2008 tmz wrote: > Hi. > I think that I want to use the Chart API in Web applications that use only > on the intranet. > To such usage

[visualization-api] About Chart API License

2016-05-17 Thread 2008 tmz
Hi. I think that I want to use the Chart API in Web applications that use only on the intranet. To such usage is, in the terms of the Google API, we need to conclude a license agreement? Or, does it be approved for use until some kind of conditions? I'm worried you do not understand may read the

Re: [visualization-api] Google Table chart printing in png

2016-05-17 Thread Lucie W
Thank you to your reply. In fact, I would like to generate a PDF page who contain my all charts. That is why i would like to get my all chart in PNG. But if you have another a solution to offer me, that suit me. Thank you. 2016-04-29 15:41 GMT+02:00 'Daniel LaLiberte' via Google Visualization