[visualization-api] Re: Line chart - Display data-sets depending on other column (if/then)

2016-03-09 Thread Nadja
Can nobody help me? Or do you not understand what I mean? Nadja Am Montag, 7. März 2016 18:47:05 UTC+1 schrieb Nadja: > > Hello, > > I have a line chart with data from a database. > In the database I have a column called "error", where numbers or > characters reflect the error code (e.g. 0=no

Re: [visualization-api] How to grow stacked bar?

2016-03-09 Thread Kok How Teh
I have tried and observed 2 issues with timeline chart: (1) When new data are added to the DataTable and the column fills up the HTML page, it wraps and fills the next line. It would be nice to have the following so that the whole data set could fit and show on the same line: (i) The

[visualization-api] Re: Bubble Chart Zoom Issue

2016-03-09 Thread asingular
Hi Daniel, Thanks, but I am a little unsure of how to go about doing that. Could you perhaps give me an example? all the best, Joe On Tuesday, March 8, 2016 at 7:33:30 PM UTC-5, asingular wrote: > Hello all, > > I am using the first example on this page: >

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

2016-03-09 Thread 'Hisham Al Kilani' via Google Visualization API
Hi Dears, I think i have a solution for your problem.. contact me hisham.alkil...@yahoo.com please. please attach your files in order for me to declare everything for you, i faced the same problem a few months ago. Best Regards,Hisham From: 'Daniel LaLiberte' via Google Visualization API

Re: [visualization-api] Re: Bubble Chart values not displaying commas

2016-03-09 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Joe, We would need to see some of your data to tell how it is formatted.But assuming it's all fine, another problem is that we did fix some formatting problems a while ago, so to use the latest version, you might have to change the way you load charts as described here:

[visualization-api] Re: Bubble Chart values not displaying commas

2016-03-09 Thread asingular
Hi Daniel, I can't provide my link because it is an intranet site. But I have uploaded a screenshot and here is a code snippet. ['#stateAbbrev#', #totClearances#, #mergedata2.totWY#, '#regionName#', #totStaff#] #totClearances# is a ColdFusion output of a number field, not a string. Not sure

Re: [visualization-api] Specific background colors for parts of a line charts?

2016-03-09 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Joshua, Here is a jsfiddle that I built for someone the other day: http://jsfiddle.net/qr7xLb71/ I hope it helps you get started. On Wed, Mar 9, 2016 at 2:59 PM Joshua Updyke wrote: > Daniel, > > Thank you for the fast response. Sometimes it is all about figuring out >

Re: [visualization-api] Specific background colors for parts of a line charts?

2016-03-09 Thread Joshua Updyke
Daniel, Thank you for the fast response. Sometimes it is all about figuring out the name of the thing you are looking for. I will read through the page about the roles and give it a shot. I might come back and pick your brain once I know some more intelligent questions. Once again, thanks

Re: [visualization-api] Specific background colors for parts of a line charts?

2016-03-09 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Josh, You could implement these charts with a couple different techniques. Here are some hints. I can help you further if you set up an example, perhaps at jsfiddle.net. For the second case, you can specify a 'style' role after the data for the area that changes the color or opacity of the

[visualization-api] Specific background colors for parts of a line charts?

2016-03-09 Thread Joshua Updyke
Hello all, I was wondering if anyone knew if it was possible to put vertical color bands on part of a google line chart? Attache is a picture of basically what I want to do. Is it possible to do something like this? If so can anyone point me to either an example or just the option name so I

Re: [visualization-api] How to code an email to render a Google Chart in an email or a viable alternative.

2016-03-09 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi JPC, I'm under the impression that JavaScript execution is either severely limited or disabled in most (if not all) email clients. So a live Google Chart is out of the question. One thing that you could do is to save an image of your desired chart via getImageURI

Re: [visualization-api] How to grow stacked bar?

2016-03-09 Thread 'Daniel LaLiberte' via Google Visualization API
To add more items to a stack, you would add more series to your data, which means you should add the new data series as a new column. But you may want to check out the timeline chart which sounds closer to the kind of use case you describe:

Re: [visualization-api] Bubble Chart Zoom Issue

2016-03-09 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Joe, That is a bit of a surprise to us, and we'll look into it. Thanks. As a workaround, you can determine the min and max values from the data using datatable.getColumnRange(n), where n is 1 and 2.Then add a fraction of (max - min) to ensure there is a margin around the data. Hope that

Re: [visualization-api] Bubble Chart values not displaying commas

2016-03-09 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Joe, Can you point us at your example so we can see what you are doing? I would suspect your data is strings rather than numbers. On Tue, Mar 8, 2016 at 7:24 PM, asingular wrote: > Hi all, > > I am using the first example on this page: >

[visualization-api] Re: Need help with % value in annotations

2016-03-09 Thread Vladimir Yakushev
up I'm still fighting with this problem, can't understand how to fix it воскресенье, 6 марта 2016 г., 22:39:26 UTC+3 пользователь Vladimir Yakushev написал: > > Hello lf help with % value in annotations. I made it in hAxis.format by > using {format:'#,###%'} but this doesn't work in

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

2016-03-09 Thread Ekabyte.com
var dataSet = [ ['Date','1st Floor', '2nd Floor', '3rd Floor', '4th Floor', '5th Floor', '6th Floor', '7th Floor', 'Tarrace Floor'], ['A Block', 1, 1, 1, 0, 0, 0, 0, 0], ['B Block', 1, 1, 1, 1, 1, 1, 1, 1], ['C Block', 1, 1, 1, 1, 1, 1, 1, 1], ['D Block', 1, 1, 1, 1, 1, 1, 1, 1], ['E Block', 1, 1,

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

2016-03-09 Thread Ekabyte.com
Dear Daniel, *My issue is I can't populate the data from my MYSQL tables. How can I achieve this. I have tried using above method, but could not achieve this. Because mine is stacked bar chart.* *Please help me on this. How I can print the data like below:* On Tue, Mar 8, 2016 at 8:02 PM,