[visualization-api] is Stacking a donut chart on top of a pie chart possible?

2015-07-09 Thread Mark A . TreviƱo
Is it possible to stack a chart on top of another? In this case I want to stack a donut chart on top of a pie chart, to create a gauge of sorts. I have done it in Excel and it look like this https://lh3.googleusercontent.com/-d4J_HrEY4v4/VZ6FsJr7lII/D8Y/RaEvhQ1Zuqk/s1600/piedonut.png

[visualization-api] Annotation Charts - legendPosition

2015-07-09 Thread Kye Miranda
I am trying to fit this type of chart https://google-developers.appspot.com/chart/interactive/docs/gallery/annotationchart into a div using html. However in this div, the charts legend is cutoff. I noticed in the documentation that there is a legendPosition option which has the capability to

Re: [visualization-api] Annotation Charts - legendPosition

2015-07-09 Thread 'Daniel LaLiberte' via Google Visualization API
Adding legendPosition: 'newRow' seems to work fine for me: https://jsfiddle.net/dlaliberte/ovb2g06d/ On Thu, Jul 9, 2015 at 2:52 PM, Kye Miranda kyem1...@gmail.com wrote: I am trying to fit this type of chart https://google-developers.appspot.com/chart/interactive/docs/gallery/annotationchart

[visualization-api] Polynomial trendlines not working when x-axis is datetime

2015-07-09 Thread ianf
Howdy, I have a dataset recorded over time, resulting in a data array of [datetime, value]. This data should produce a smoothly-curving, 3rd-degree polynomial trendline. When I plot this data using a LineChart, the trendline is a straight line. If I change the datetimes to a number, the

[visualization-api] Using charts API in Android application?

2015-07-09 Thread Anmol Malhotra
Hi guys, I wanted to create dynamic charts in my android application on crimes against women. Is it possible to use these APIs in Android application? Any reply would be really helpful. :) If yes how can I use html tag in Android studio? -- You received this message because you are

[visualization-api] Security certificate problem

2015-07-09 Thread Ben ten Dam
I make charts for many years with https://chart.apis.google.com/chart The last weeks I have problems with the security certficate; see below. There is a problem with the secure connection to this website. The security certificate that is used by this website, is granted to a address for

[visualization-api] Google charts on Desktop application

2015-07-09 Thread mariummalik22
I want to create charts on my desktop application using google charts api. Is it possible to do so? -- 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

Re: [visualization-api] Security certificate problem

2015-07-09 Thread 'Jon Orwant' via Google Visualization API
Hi Ben, everyone should be using http://chart.googleapis.com/chart instead. Jon On Thu, Jul 9, 2015 at 7:29 AM, Ben ten Dam bentend...@gmail.com wrote: I make charts for many years with https://chart.apis.google.com/chart The last weeks I have problems with the security certficate; see

Re: [visualization-api] Chart Range filter hangs when I have 1000 rows of data

2015-07-09 Thread 'Daniel LaLiberte' via Google Visualization API
When I select that data range, I am seeing that chartdata has over 23000 rows, not just 1000 rows. It is indeed slow, and I'm not sure why since 23K is not a particularly large number of rows. I'd be curious if you could try a few things to simplify the charts to see what helps, so we can narrow

Re: [visualization-api] Google charts on Desktop application

2015-07-09 Thread 'Daniel LaLiberte' via Google Visualization API
Google Charts depends on fetching the code from a Google server and running in a browser, so if your desktop application can embed a web browser with JavaScript and SVG capability, you may be able to do it. On Thu, Jul 9, 2015 at 3:34 AM, mariummalik22 mariummali...@gmail.com wrote: I want to

Re: [visualization-api] Annotation Charts - legendPosition

2015-07-09 Thread 'Daniel LaLiberte' via Google Visualization API
Sorry, no. The current features are mostly for backward compatibility with the old annotatedTimeLine chart. We plan to do more in the future to allow the layout to be configured, but there is nothing else now. On Thu, Jul 9, 2015 at 4:23 PM, Kye Miranda kyem1...@gmail.com wrote: Ok, I guess

[visualization-api] join() method for more than 2 DataTable

2015-07-09 Thread rafLab
Hi!. Is there a way to join more than 2 DataTable to a linear graph? I've tried joining an already joined DataTable(dt1,dt2) with a third Data(dt3) but it doesn't work. var data1 = google.visualization.arrayToDataTable(arrayData1); var data2 = google.visualization.arrayToDataTable(arrayData2);

[visualization-api] Google Charts Calendar doesn't work

2015-07-09 Thread Vagner Guilherme
It appears that Google Charts calendar is not working properly. The example shown in the website Google ( https://developers.google.com/chart/interactive/docs/gallery/calendar) after I have applied a test it doesn't show the results in the appropriate month (especially for October, November

Re: [visualization-api] Annotation Charts - legendPosition

2015-07-09 Thread Kye Miranda
Ok, I guess the result was too subtle for me to notice in the format that its being used. Is there anyway to re-position the legend completely? E.g. move it underneath the legend? On Thursday, July 9, 2015 at 12:14:18 PM UTC-7, Daniel LaLiberte wrote: Adding legendPosition: 'newRow' seems to

[visualization-api] Re: AnnotationCharts - how to avoid large gap in time data

2015-07-09 Thread fesan
Thank you Daniel. On Wednesday, July 8, 2015 at 1:54:20 AM UTC-4, fesan wrote: I have a time series that I'm trying to plot. This series contains intraday stock price data with a 5-minute sample frequency for several days. There is no data for afterhours (i.e.,4pm-9:30am) and weekends.

Re: [visualization-api] join() method for more than 2 DataTable

2015-07-09 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Rafael, It's not clear from your examples what you expect the output of your join of data12 and data3 should be. Can you give an example of that output table? On Thu, Jul 9, 2015 at 4:39 PM, rafLab raf...@labarca.cl wrote: Hi!. Is there a way to join more than 2 DataTable to a linear