[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 
(https://developers.google.com/chart/interactive/docs/quick_start) 

I've tried for three days to get it to work in a PHP email executed from 
the BASH shell, e.g. *php t5.php* 
I am able to successfully send basic HML in the mail php template code 
below. 
 
I took the quick-start code (above) and put it in the PHP email template 
(below) , being careful to change the proper double quotes (") to single 
quotes ('). See attached code (t5.php).

**
*.*
*.see attached file with Google quick-start source*
*.*
**
*";*


*$headers = 'MIME-Version: 1.0' . "\r\n";*
*$headers .= 'Content-type:text/html;charset=UTF-8' . "\r\n";*

*mail($to,$subject,$message,$headers);*
*?>*
 
So, I'm wondering if I have an improper Header or if Javascript is an issue 
or if I've done something stupid with quotes. 

I've searched Google, several forums, Github, etc. for to find a simple 
working example of a Google Chart embedded in an email using a process that 
can be automated. No joy. 
Perhaps this cannot be done via mail and can only be done from a website? 

It has been suggested that I take screenshots and send the .png or .jpg to 
my target recipient - not a process that can be automated. 


   1. *If for some reason this can't be done, I'd like to know.*
   2. *If it can be done, I'd love to see an example. *
   3. *If there is a better way to send 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 would love to know what it is. *
   
Thank you. 

-- 
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 from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/4512d9e6-f730-4122-9a5c-b0dbffe4a780%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
<>


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 for each state) 
is stacked on the same domain bar and people could zoom in / out on the 
bar, imagine that the bar stretches over days / weeks / months.

Regards,
KH

On Tuesday, March 8, 2016 at 10:28:20 PM UTC+8, Daniel LaLiberte wrote:
>
> 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 if 
> you add rows to the table for the BarChart, additional stacked columns 
> would show up on the bottom. (depending on where you add the rows, and 
> whether you change the 'direction' option).
>
> Either chart should work with the 'explorer' option, but the explorer mode 
> does not yet work with discrete (string value) axes.  If your domain values 
> (column 0) are discrete, you could still do some hacking to change your 
> values to integers, and provide formatted values for each.  You would also 
> want to use the explicit 'ticks' option to change how the tick values are 
> displayed.
>
> On Tue, Mar 8, 2016 at 4:19 AM, Kok How Teh  > wrote:
>
>> 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 column instead. Any advice and insight is 
>> appreciated. Thanks.
>>
>> Regards,
>> KH
>>
>> -- 
>> 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 from it, send an 
>> email to google-visualization-api+unsubscr...@googlegroups.com 
>> .
>> To post to this group, send email to google-visua...@googlegroups.com 
>> .
>> Visit this group at 
>> https://groups.google.com/group/google-visualization-api.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/google-visualization-api/7d638d0e-d3fa-4bb5-8fe0-f3ba892d8e4b%40googlegroups.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> -- 
> Daniel LaLiberte 
> dlali...@google.com5CC, Cambridge MA
>

-- 
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 from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/061f62a1-4638-4a43-87b0-e434e09e8ba5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[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 function works as expected, but the bubble on the far right gets 
cut off on the top right side. That doesn't happen if I take out explorer: 
{ actions: ['dragToZoom', 'rightClickToReset'] } . 

Anyone know how I can fix it without hAxis.maxValue and vAxis.maxValue? 
That is not an option since the data is too dynamic.

thanks,
Joe

-- 
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 from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/3ee4f1a6-b67c-4191-a9be-c59446e077db%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[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. Does anyone know why the commas are not displaying and 
what I can do to fix it?

Thanks so much!
Joe

-- 
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 from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/704d60fa-4560-4718-814d-6d682919d7f3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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);

function drawChart() {
  var data = google.visualization.arrayToDataTable(...);
  // more chart stuff
}


On Tue, Mar 8, 2016 at 1:50 AM natarajan govindavel 
wrote:

>
> Hi Sergey,
>
> If i remove jsapi loader code as you said i faced the following issue.
>
> https://www.gstatic.com/charts/loader.js";>
> <%-- https://www.google.com/jsapi?autoload={
> 'modules':[{
>   'name':'visualization',
>   'version':'1.1',
>   'packages':['corechart','bar','controls']
> }]
>   }">--%>
>  google.charts.load('current', {
> 'packages': ['corechart','bar', 'controls']
> });
> it shows the error message. Uncaught TypeError: Cannot read property
> 'arrayToDataTable' of undefined.
> In the visualization charts not loaded.
>
> Thanks
> Natarajan
>
> On Monday, March 7, 2016 at 8:39:37 PM UTC+5:30, Sergey wrote:
>
>> Natarajan,
>>
>> *Please do not use autoload and the gstatic loader on the same page*.
>> This can lead to issues that are very difficult to figure out.
>>
>> The gstatic loader is the only place where we're pushing new versions at
>> this point. Loading jsapi as well will cause older versions to be loaded.
>> The gstatic loader should be the only loader you use at this point (this
>> means you should remove the jsapi script entirely, unless you use the
>> GeoChart, in which case you still should not have it autoload). You need to
>> add 'corechart' to your google.charts.load call though.
>>
>> Sadly, there is currently no way to hide an axis in Material Charts.
>>
> On Mon, Mar 7, 2016 at 7:59 AM natarajan govindavel 
>> wrote:
>>
> I forget to mention one thing. The below given chart is material chart.
>>
>>
>> On Monday, March 7, 2016 at 5:02:37 PM UTC+5:30, natarajan govindavel
>> wrote:
>>
>> Hi Sergey,
>>
>> Thank so much for your support. Almost fixed all the issues except one.
>> Is their anyway to hiding these (highlighted) supplementary axis from the
>> chart.
>>
>>
>> 
>>
>> Thanks
>> Natarajan Govindavel
>>
>> On Wednesday, February 24, 2016 at 9:31:59 PM UTC+5:30, Sergey wrote:
>>
>> Hi Natarajan,
>>
>> You should be able to use html2canvas to save the charts as images, as
>> the stackoverflow post suggests. You may be aware that some of our charts
>> (like ComboChart and the rest of the charts provided by the 'corechart'
>> package) support getImageUri, which will basically allow you to save images
>> of the charts, but Material Charts do not yet support this API.
>>
>> On Wed, Feb 24, 2016 at 10:26 AM natarajan govindavel <
>> natara...@gmail.com> wrote:
>>
>> Hi Sergey,
>>
>> Is there any other way to save material chart as images.
>> like given in that link :
>> http://stackoverflow.com/questions/6887183/how-to-take-screen-shot-of-a-div-with-javascript
>>
>> Thanks
>> Natarajan Govidavel
>>
>>
>> On Friday, February 19, 2016 at 8:43:59 PM UTC+5:30, Sergey wrote:
>>
>> So I don't see anything obviously wrong with your code. Could you link to
>> a page on which you're experiencing the error? If you're uncomfortable
>> sharing the link over the forum, feel free to send me a private message.
>>
>> On Fri, Feb 19, 2016 at 8:47 AM natarajan govindavel 
>> wrote:
>>
>> Hi sergey,
>>
>> I have seen  below mentioned issue in browser console
>> Error: one or more fonts could not be loaded.
>>
>> In FireFox (44.0.2) this issue happen more frequently.
>> And I checked with the link
>>
>> https://groups.google.com/forum/#!topic/google-visualization-api/bSJLBO_fm2w
>>
>> so i changed from current to 43 still issue exists.
>> And my code is very complex because making the array dynamically from
>> webservice (asmx) and calling that data using jquery ajax.
>>
>> function ChangePeriodL(id) {
>> if (id != "") {
>> $(".loc").removeClass('active');
>> $(id).addClass('active');
>> value = $(id).attr('id');
>> event_id = "CLICK"; //click event
>> g_var = 0;
>> } else
>> value = 0;
>> $.ajax({
>> type: "POST",
>> url: "remote url",
>> contentType: "application/json; charset=utf-8",
>> dataType: "json",
>> data: JSON.stringify({
>> "timespan": value
>> }),
>> success: function(data) {
>> if (data.d != "Empty") {
>> addCode(data.d);
>> if (typeof dataArray[8] != "undefined") {
>> $('#AllLoc').text(TitleArray[8]);
>> if (dataArray[8].getNumberOfRows() > 3)
>> var height = dataArray[8].getNumberOfR

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 you are using to narrow down the problem.

On Mon, Mar 7, 2016 at 11:44 PM, Abhijit Dhobale 
wrote:

> Hello Team,
>
> I draw a Gantt chart but facing problem with information box which is
> occurred on hover of any bar. I attached 2 image with this post. PFA. I
> also want to exclude weekends from the chart so is it possible? Thanks in
> advance for your help.
>
>
> Thanks,
> Abhijit
>
> --
> 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 from it, send an
> email to google-visualization-api+unsubscr...@googlegroups.com.
> To post to this group, send email to
> google-visualization-api@googlegroups.com.
> Visit this group at
> https://groups.google.com/group/google-visualization-api.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-visualization-api/7504a6b5-df44-4bca-85f3-0243d63478b8%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Daniel LaLiberte 
dlalibe...@google.com5CC, Cambridge MA

-- 
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 from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJN63Xc2yjVt0apcaKDHNz%3DdRpWkrFfEkm%3Db-krig8iiwg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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)? 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
>> https://developers.google.com/chart/interactive/docs/reference#numberformat
>> and also the 'format' option for the LineChart:
>> https://developers.google.com/chart/interactive/docs/gallery/linechart
>>
>> On Sun, Mar 6, 2016 at 5:01 AM, Markus Weiss  wrote:
>>
>>> Hello I am new to things Google Charts
>>> I have a LineChart where I want to display amounts. What must i to  for
>>> amounts in a currency of my choice to display? My current code is:
>>>
>>>  function drawChart() {
>>>   var data = google.visualization.arrayToDataTable([
>>> ["Element", "aktueller Betrag in CHF", { role: "style" } ],
>>> ["PORTOFORTUNA", 300, "#513a43"],
>>> ["EYES OPEN", 15330, "6f664c"],
>>> ["GREEN ETHIOPIA", 1330, "74676c"]
>>>
>>>   ]);
>>>
>>> Thanks for your help
>>> Markus
>>>
>>> --
>>> 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 from it, send
>>> an email to google-visualization-api+unsubscr...@googlegroups.com.
>>> To post to this group, send email to google-visua...@googlegroups.com.
>>> Visit this group at
>>> https://groups.google.com/group/google-visualization-api.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/google-visualization-api/92fc8874-62a2-480b-8564-01459d443cda%40googlegroups.com
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>
>>
>> --
>> Daniel LaLiberte 
>> dlali...@google.com   5CC, Cambridge MA
>>
> --
> 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 from it, send an
> email to google-visualization-api+unsubscr...@googlegroups.com.
> To post to this group, send email to
> google-visualization-api@googlegroups.com.
> Visit this group at
> https://groups.google.com/group/google-visualization-api.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-visualization-api/9d5b9554-b200-4f4a-bbe7-6530a5772809%40googlegroups.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Daniel LaLiberte 
dlalibe...@google.com5CC, Cambridge MA

-- 
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 from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJN3KEj5585GVC-Fc5np2rBUdxCBEEpZT3Yqfs1TwB3iDw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 example:
https://google-developers.appspot.com/chart/interactive/docs/php_example

On Tue, Mar 8, 2016 at 6:06 AM, Krishna Prasad  wrote:

> 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, 2016 at 5:06 AM, Krishna Prasad  wrote:
>>
>>
>> Now the URL changed as http://pinnacleinfotech.in/vivera/chart.html
>> 
>>
>> On Tuesday, March 1, 2016 at 12:54:16 PM UTC+5:30, krishna prasad wrote:
>>
>> Hi,
>>
>> My chart should exactly looks like this
>> http://onnetsourcing.com/vivera/chart.html . Here I have entered the
>> data in manual format. Please help me the script which istaking the data
>> from DB and display in the chart.html page. You can see the codes as below:
>>
>> https://www.google.com/jsapi";>
>> 
>> 

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 if
you add rows to the table for the BarChart, additional stacked columns
would show up on the bottom. (depending on where you add the rows, and
whether you change the 'direction' option).

Either chart should work with the 'explorer' option, but the explorer mode
does not yet work with discrete (string value) axes.  If your domain values
(column 0) are discrete, you could still do some hacking to change your
values to integers, and provide formatted values for each.  You would also
want to use the explicit 'ticks' option to change how the tick values are
displayed.

On Tue, Mar 8, 2016 at 4:19 AM, Kok How Teh  wrote:

> 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 column instead. Any advice and insight is appreciated.
> Thanks.
>
> Regards,
> KH
>
> --
> 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 from it, send an
> email to google-visualization-api+unsubscr...@googlegroups.com.
> To post to this group, send email to
> google-visualization-api@googlegroups.com.
> Visit this group at
> https://groups.google.com/group/google-visualization-api.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-visualization-api/7d638d0e-d3fa-4bb5-8fe0-f3ba892d8e4b%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Daniel LaLiberte 
dlalibe...@google.com5CC, Cambridge MA

-- 
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 from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJO9_2NpUgUrB-Jv%3Do_1NUeF1ozBaXS2ZwqinFz%3DLfbQCw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 , however i need a *clustered stacked column
> graphs* , not just clustered column graph . Please have a look on my
> attachment picture. Please suggest me is there any alternative to produce
> the graph same as in attachment
>
> On Monday, 7 March 2016 22:55:31 UTC+8, Daniel LaLiberte wrote:
>>
>> Hi Ravi,
>>
>> You can do that type of stacked and grouped chart with the Material
>> Column Chart.   The trick is to target all of the series that should be
>> stacked together to its own axis.
>> See:
>> https://developers.google.com/chart/interactive/docs/gallery/columnchart#creating-material-column-charts
>>
>>
>> On Sun, Mar 6, 2016 at 9:08 PM, Ravi Kanje  wrote:
>>
>>> Hi All,
>>>
>>> Can anyone help me in drawing the google stacked column chart as
>>> attached. I am able to produce column chart but the issue is i am not able
>>> to clustered stacked columns based on the X-Axis  monthly data.
>>>
>>> I want to group the stacked column chart based on month so that i can
>>> cluster the columns horizontally as shown in attached pic.
>>>
>>>
>>> Thanks.
>>>
>>>
>>>
>>> --
>>> 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 from it, send
>>> an email to google-visualization-api+unsubscr...@googlegroups.com.
>>> To post to this group, send email to google-visua...@googlegroups.com.
>>> Visit this group at
>>> https://groups.google.com/group/google-visualization-api.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/google-visualization-api/dc7530a1-23a9-4e89-a4c3-1d6afd0c57d4%40googlegroups.com
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>
>>
>> --
>> Daniel LaLiberte 
>> dlali...@google.com   5CC, Cambridge MA
>>
> --
> 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 from it, send an
> email to google-visualization-api+unsubscr...@googlegroups.com.
> To post to this group, send email to
> google-visualization-api@googlegroups.com.
> Visit this group at
> https://groups.google.com/group/google-visualization-api.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-visualization-api/0e30298f-e186-4180-956a-1be8d3ed6a52%40googlegroups.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Daniel LaLiberte 
dlalibe...@google.com5CC, Cambridge MA

-- 
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 from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJO26QTTCVLj7MwLc0mHRD-O_PvwyuhRRgPDL9-_gPYStQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[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 would like to
> replace bubbles with oval or ellipse with different radii. Is there a way
> possible to do this using google api or is there a possible work around ?
>
> Regards,
> Joseph
>



-- 
Daniel LaLiberte 
dlalibe...@google.com5CC, Cambridge MA

-- 
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 from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJM4K_YHPrifwYPpe8N6NkSZG2jvPJr2rbhG70qdD665tA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


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 
> https://developers.google.com/chart/interactive/docs/reference#numberformat
> and also the 'format' option for the LineChart:  
> https://developers.google.com/chart/interactive/docs/gallery/linechart
>
> On Sun, Mar 6, 2016 at 5:01 AM, Markus Weiss  > wrote:
>
>> Hello I am new to things Google Charts
>> I have a LineChart where I want to display amounts. What must i to  for 
>> amounts in a currency of my choice to display? My current code is:
>>
>>  function drawChart() {
>>   var data = google.visualization.arrayToDataTable([
>> ["Element", "aktueller Betrag in CHF", { role: "style" } ],
>> ["PORTOFORTUNA", 300, "#513a43"],
>> ["EYES OPEN", 15330, "6f664c"],
>> ["GREEN ETHIOPIA", 1330, "74676c"]
>> 
>>   ]);
>>
>> Thanks for your help
>> Markus
>>
>> -- 
>> 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 from it, send an 
>> email to google-visualization-api+unsubscr...@googlegroups.com 
>> .
>> To post to this group, send email to google-visua...@googlegroups.com 
>> .
>> Visit this group at 
>> https://groups.google.com/group/google-visualization-api.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/google-visualization-api/92fc8874-62a2-480b-8564-01459d443cda%40googlegroups.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> -- 
> Daniel LaLiberte 
> dlali...@google.com5CC, Cambridge MA
>

-- 
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 from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/9d5b9554-b200-4f4a-bbe7-6530a5772809%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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, 2016 at 5:06 AM, Krishna Prasad  > wrote:
>
>
> Now the URL changed as http://pinnacleinfotech.in/vivera/chart.html 
> 
>
> On Tuesday, March 1, 2016 at 12:54:16 PM UTC+5:30, krishna prasad wrote:
>
> Hi,
>
> My chart should exactly looks like this 
> http://onnetsourcing.com/vivera/chart.html . Here I have entered the data 
> in manual format. Please help me the script which istaking the data from DB 
> and display in the chart.html page. You can see the codes as below:
>
> https://www.google.com/jsapi";>
> 
> 

[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 column instead. Any advice and insight is appreciated. 
Thanks.

Regards,
KH

-- 
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 from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/7d638d0e-d3fa-4bb5-8fe0-f3ba892d8e4b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[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 Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/b0a56950-7d0d-40b3-9b44-779009407e6b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.