[visualization-api] Re: Pie charts draw slice labels in positions causing them to be cut off

2017-10-10 Thread Adam Reece
I forgot to mention -- Changing the donut size down does not impact the label position, even if the donut mode is disabled completely. -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To unsubscribe from this group and stop

[visualization-api] Any example of stacked column with dual y axes?

2017-10-10 Thread Keny
>From the link https://developers.google.com/chart/interactive/docs/gallery/combochart, it does have 2 different axes?Any ideas or references? Thanks in advance. --

[visualization-api] Pie charts draw slice labels in positions causing them to be cut off

2017-10-10 Thread Adam Reece
There is an issue with pie charts in that the slice text is drawn far too close to the outside edge, and this doesn't appear to be a configurable option. What can easily happen is the label text overflows outside of the chart slice space. This causes the label to not be fully readable. The

[visualization-api] Query Function

2017-10-10 Thread Ruchi Sunandan
Can the query function read more than one parameter? I have used an 'OR' to try and make it work, but it keeps giving me parse error ="select * where (col37='PRD-TEMP' OR Col37='PRD-MFG')" -- -- You received this message because you are subscribed to the Google Groups "Google

[visualization-api] Google Chart do not show Last value in PieChart

2017-10-10 Thread Inzimam Tariq
Hi, I'm using twig file and copied code from google site. When I tried adding hard coded values its perfect But I have to show add values in pie chart So, When I try dynamically It shows all but the last value do not show up in chart. Also legend of the chart shows that value as "other" not the

[visualization-api] Re: Google Chart do not show Last value in PieChart

2017-10-10 Thread Inzimam Tariq
There is no problem till we add string data dynamically But when we add integer values to second column here problem comes in. On Tuesday, October 10, 2017 at 5:12:07 PM UTC+5, Inzimam Tariq wrote: > > Hi, > I'm using twig file and copied code from google site. When I tried adding > hard coded

[visualization-api] Worldwide Latest new Feature in Flexible Display 2017 – Market Research

2017-10-10 Thread Karishma M
*Free Request Sample Copy is Available https://goo.gl/WZTmn7 * Flexible displays advanced version of simple flat screen displays that are easily bendable. The constant minimizing of the width of the display has enabled the manufactures to develop a bendable or

[visualization-api] Stack Items

2017-10-10 Thread Lionel Valero
Hello, Is it possible to stack items instead of having them on top of each others (cf picture attached) ? Regards -- 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,

[visualization-api] Broken link

2017-10-10 Thread Matt
Hi, Not sure who to notify about a broken link. On this page: https://developers.google.com/chart/interactive/docs/reference, there is a link to: https://www.google.com/uds/modules/gviz/gviz-api.js In that file, it says: For the most up to date API reference please visit: * {@link

[visualization-api] Leyenda y Anotaciones

2017-10-10 Thread Richard Noel
Estimados Buenos Dias Deseo tener una característica en este tipo de grafico en lineas: google.charts.load('current', {'packages':['line']}); var chart = new google.charts.Line(document.getElementById('linechart_material')); La característica que deseo agregar es que cuando haga clic en una de

Re: [visualization-api] Any example of stacked column with dual y axes?

2017-10-10 Thread 'Daniel LaLiberte' via Google Visualization API
In general, to get 2 vertical axes, just add the targetAxisIndex option to the series that should be associated with a different axis. E.g. series: {5: {type: 'line', targetAxisIndex: 1}} On Tue, Oct 10, 2017 at 5:56 AM, Keny wrote: > >

Re: [visualization-api] Re: Pie charts draw slice labels in positions causing them to be cut off

2017-10-10 Thread 'Daniel LaLiberte' via Google Visualization API
The issue is most likely that the text size is effectively zero because you are drawing the chart when it is not yet displayed. That's why it appears to be left aligned rather than centered. The workaround is to arrange that you only draw the chart when it is displayed. On Tue, Oct 10, 2017 at

Re: [visualization-api] Broken link

2017-10-10 Thread 'Daniel LaLiberte' via Google Visualization API
Thanks Matt. We should actually replace the link to the uds document with an updated version, probably on gstatic. On Tue, Oct 10, 2017 at 2:36 PM, Matt wrote: > Hi, > > Not sure who to notify about a broken link. > > On this page:

[visualization-api] Google Chart + Dart Lang

2017-10-10 Thread Samuel Schwebel
Hi, Is there a plan to implement google chart for Dart Language? 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

Re: [visualization-api] Broken link

2017-10-10 Thread 'Jon Orwant' via Google Visualization API
In the meantime I've removed the obsolete section. Thanks for reporting this, Matt! Jon On Tue, Oct 10, 2017 at 3:06 PM, 'Daniel LaLiberte' via Google Visualization API wrote: > Thanks Matt. We should actually replace the link to the uds document

Re: [visualization-api] Any example of stacked column with dual y axes?

2017-10-10 Thread Keny
Thank your for your reply, may i ask what does 5 here mean? Daniel LaLiberte於 2017年10月10日星期二 UTC+8下午11時02分36秒寫道: > > In general, to get 2 vertical axes, just add the targetAxisIndex option to > the series that should be associated with a different axis. E.g. > > series: {5: {type: 'line',

Re: [visualization-api] Any example of stacked column with dual y axes?

2017-10-10 Thread 'Daniel LaLiberte' via Google Visualization API
5 is the series index number. See the documentation under the 'series' option on the page you linked to. On Tue, Oct 10, 2017 at 9:42 PM, Keny wrote: > Thank your for your reply, > may i ask what does 5 here mean? > > Daniel LaLiberte於 2017年10月10日星期二 UTC+8下午11時02分36秒寫道: