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

2016-03-08 Thread Kok How Teh
Hi Daniel; Is there any chart that I could use which would stack on the same bar when new values are added? I am trying to visualize the states of a state machine and the hAxis / X-Axis is time, Y-Axis is domain and every time the state machine changes, a new state (with predefined color

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

2016-03-08 Thread JPC
*I am trying to take server side acquired data, wrapped in HTML, PHP code, Javascript or whatever, to build code then sent via mail so the the recipient's browser shows him a graphic, * I've tried to use Google Charts Quickstart code

[visualization-api] Bubble Chart Zoom Issue

2016-03-08 Thread asingular
Hello all, I am using the first example on this page: https://developers.google.com/chart/interactive/docs/gallery/bubblechart#overview and it looks good. But I have one issue. I am using the following code to zoom. explorer: { actions: ['dragToZoom', 'rightClickToReset'] } The zoom

Re: [visualization-api] Viewing amounts in national currency of choice

2016-03-08 Thread Markus Weiss
Hi Daniel... OK. Have me a sample code)? Am newbie to JavaScript. Thank you! Am Montag, 7. März 2016 15:49:27 UTC+1 schrieb Daniel LaLiberte: > Hi Markus, > > For currencies, usually you will just use numbers, and then specify the > currency in the format. See >

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

2016-03-08 Thread Krishna Prasad
Hi Denial, Please find the URL http://pinnacleinfotech.in/vivera/chart.html its working fine. Please help me to resolve this. On Monday, March 7, 2016 at 7:08:15 PM UTC+5:30, Daniel LaLiberte wrote: > > Hi Krishna, > > Your URL is the same as before, and results in an error. > > On Mon, Mar 7,

[visualization-api] chart is not displaying in Safari

2016-03-08 Thread vitluhayquen
Hi Developers! i have the chart use https://developers.google.com/chart/interactive/docs/gallery/piechart#example. But it not working in Safari(woking fine on other brower), Please help me resolve problem! Thank you very much -- You received this message because you are subscribed to the

[visualization-api] How to grow stacked bar?

2016-03-08 Thread Kok How Teh
Hi; I need a horizontal stacked bar which would grow horizontally with new data added to the data table and being explorable. How do I grow the stacked bar with new data? I expect it to behave like stacked column chart with addrow(). However, in the case of stacked bar, it's not row but

[visualization-api] Re: Oval - Bubble Chart

2016-03-08 Thread 'Daniel LaLiberte' via Google Visualization API
More ways of rendering bubbles is an interesting idea, which we think about from time to time. We don't have a way of doing that now, but would like to eventually. On Mon, Mar 7, 2016 at 6:57 PM, wrote: > Hi All, > > Currenty I am using bubble chart for my project. But I

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

2016-03-08 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Kok, First, just to be clear, what we are calling a BarChart is the same as a ColumnChart reoriented so the domain axis is vertical. They both have the very same data table structure. If you add rows to the table for a ColumnChart, additional stacked columns would show up on the right. And

Re: [visualization-api] Viewing amounts in national currency of choice

2016-03-08 Thread 'Daniel LaLiberte' via Google Visualization API
There is an example of using currency on this page: https://google-developers.appspot.com/chart/interactive/docs/customizing_axes#number-formats Select 'Currency' in the dropdown. On Tue, Mar 8, 2016 at 7:14 AM, Markus Weiss wrote: > Hi Daniel... > OK. Have me a sample code)?

Re: [visualization-api] Facing problem with information box on hover of any bar drawn in chart

2016-03-08 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Abhijit, We don't have a way to exclude weekends yet. Regarding your tooltips with no background, it could be you have some interference with styles. Could you provide a link to your web page, or make an example on jsfiddle? If this persists, we would probably next ask about which browser

Re: [visualization-api] Google Stacked Group Chart , Need Clustered stacked columns using google chart only

2016-03-08 Thread 'Daniel LaLiberte' via Google Visualization API
Here is an example that shows two stacks of two series each: http://jsfiddle.net/dlaliberte/f7r3odo7/ On Mon, Mar 7, 2016 at 8:22 PM, Ravi Kanje wrote: > Hi Daniel > > > Thanks for your reply, I took a look on that graph, but it shows the > column graphs in clustered ,

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

2016-03-08 Thread 'Daniel LaLiberte' via Google Visualization API
OK I can see an image of a chart now. I am not clear on what your problem is. It sounds like you are having trouble getting data from a database, but you are not showing the code you use to do that. There are several sections in the docs about getting data from a server. See this one for

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-03-08 Thread 'Sergey Grabkovsky' via Google Visualization API
It sounds like you're not putting your chart code into a callback. That is, you're probably doing something like: var data = google.visualization.arrayToDataTable(...); // more chart stuff When you should be doing: ... google.charts.load(...); google.charts.setOnLoadCallback(drawChart);

[visualization-api] Bubble Chart values not displaying commas

2016-03-08 Thread asingular
Hi all, I am using the first example on this page: https://developers.google.com/chart/interactive/docs/gallery/bubblechart. It is working great but the numbers in the *Population *field are not displaying commas. I am connecting to SQL server and looping through using a Coldfusion query.