Re: [visualization-api] Changing between dataviews

2015-01-13 Thread theatomicbob
Thanks so much, that fixes the problem. Completely makes sense. Morgan On Tuesday, January 13, 2015 at 5:21:21 AM UTC-8, Daniel LaLiberte wrote: The ChartRangeFilter doesn't change the range of values just because it is given new data. It assumes you want to preserve the previously set

[visualization-api] Re: Chart range filter - Custom toolol tip and X-axis ticks

2015-01-13 Thread Akhil G M
Hi, Thanks for the Information. I,ve tried using ui: { chartOptions: { hAxis: { ticks: hAxisAry },} } where hAxisAry is the array of ticks to be shown in the chart. But that is not getting reflected in the chart. Also if I try to give a 'title' for the hAxis, the

[visualization-api] Re: How to bind 2 charts containing different data sets with single ChartRangeFilter.....any suggestion

2015-01-13 Thread Kallol Das
Hi Daniel, I have managed to address the 1st point. Please find the link: http://jsfiddle.net/1h9kza6g/29/ So, only point 2 is still remains. -- Kallol On Wednesday, December 24, 2014 at 6:57:35 PM UTC+5:30, Kallol Das wrote: Hi All, I am developing a dashboard application where I need to

Re: [visualization-api] misalignment percentages the graphic

2015-01-13 Thread 'Daniel LaLiberte' via Google Visualization API
Julian, I don't think you posted what you wanted to post. I don't see a button, but only a chart_div. The html you attached also doesn't help, since I only see this: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN html headMETA http-equiv=Content-Type content=text/html;

Re: [visualization-api] misalignment percentages the graphic

2015-01-13 Thread Julian Andres Vela S.
Hola Daniel, no me muestra el gráfico, añada las líneas que sugeriste ​ 2015-01-13 12:20 GMT-05:00 'Daniel LaLiberte' via Google Visualization API google-visualization-api@googlegroups.com: Actually, I see your source if I download the html. But thanks for including the HTML in the post.

Re: [visualization-api] misalignment percentages the graphic

2015-01-13 Thread 'Daniel LaLiberte' via Google Visualization API
Actually, I see your source if I download the html. But thanks for including the HTML in the post. Since you are using jQuery dialogs, look at this page for ideas: http://stackoverflow.com/questions/12337271/run-a-function-after-loading-jquery-dialog What you need to do is: - Do not call

Re: [visualization-api] misalignment percentages the graphic

2015-01-13 Thread Julian Andres Vela S.
you I will copy here, watch it, thank Daniel !DOCTYPE html html lang=es head titleEjemplo Dialogos Emergentes/title meta http-equiv=content-type content=text/html; charset=UTF-8/ link rel=stylesheet href=jquery-ui.css / script src=

Re: [visualization-api] misalignment percentages the graphic

2015-01-13 Thread 'Daniel LaLiberte' via Google Visualization API
Julian, If you do not see any chart, then perhaps there is a javascript error. Check your javascript console. I only suggested how you could change your dialogo2, but if that is not the correct dialog to change, do the same thing for the correct dialog. Also, I am not sure your version of

Re: [visualization-api] misalignment percentages the graphic

2015-01-13 Thread Julian Andres Vela S.
hello again thanks Daniel, I'll let my little code, I'm calling the script from a button like this: div id = chart_div / div not how to make then run me open the popup El martes, 13 de enero de 2015, 11:48:13 (UTC-5), Daniel LaLiberte escribió: How you proceed depends on how

Re: [visualization-api] Chart range filter - Custom toolol tip and X-axis ticks

2015-01-13 Thread 'Daniel LaLiberte' via Google Visualization API
The ChartRangeFilter lets you provide options for the underlying chart via the ui: { chartOptions: {} } option. See the documentation for chartOptions in https://developers.google.com/chart/interactive/docs/gallery/controls?hl=it#chartrangefilter So you should be able to specify the hAxis ticks

Re: [visualization-api] Create graphs on the fly

2015-01-13 Thread 'Jon Orwant' via Google Visualization API
Yes. Jon On Tue, Jan 13, 2015 at 2:34 AM, Jeremy Ovia jovi...@gmail.com wrote: If I have an ajax search function the returns the values of the top students in a certain course, can I use google charts to generate a chart on the fly based on my search result? -- You received this message

[visualization-api] Chart range filter - Custom toolol tip and X-axis ticks

2015-01-13 Thread Akhil G M
Hi, I'm working with chart range filter. My question is: Is there any way to give custom tooltip and X-axis ticks if we are using Chart range filter type charts. I've tried using data.addColumn({type: 'string', role: 'tooltip'}) for my chart. But it is not working. Also, Is there any way to

Re: [visualization-api] Changing between dataviews

2015-01-13 Thread 'Daniel LaLiberte' via Google Visualization API
The ChartRangeFilter doesn't change the range of values just because it is given new data. It assumes you want to preserve the previously set range, rather than resetting to show everything, on the assumption that you aren't changing your data that much, and the user would expect the range to be

[visualization-api] Google Charts V41 Release Candidate Pushed: January 13, 2015

2015-01-13 Thread 'Daniel LaLiberte' via Google Visualization API
We have pushed a new Google Charts Release Candidate (RC) - V41 Candidate release date: January 13, 2015 Anticipated production release date: January 27, 2015 New features / bugs fixed: - Calendar chart - support 0 values. - Histogram - automatically constrain number of

Re: [visualization-api] misalignment percentages the graphic

2015-01-13 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Julian, This problem with PieChart showing its labels in the wrong place is typically caused by drawing the chart when the container is not visible, since the Chart drawing process needs to measure text when it is actually displayed. One solution is to draw it off-screen. Another is to defer

[visualization-api] misalignment percentages the graphic

2015-01-13 Thread Julian Andres Vela S.
insert the graphic inside a popup window and percentages are misalignment. Help me https://lh4.googleusercontent.com/-Hdb84k1spAU/VLU_RH_GN2I/BV0/PUjuSBLSxc4/s1600/Capturagcharts.PNG -- You received this message because you are subscribed to the Google Groups Google Visualization

Re: [visualization-api] misalignment percentages the graphic

2015-01-13 Thread Julian Andres Vela S.
Hi Daniel thanks for your help, is right the problem is with the PieChart, how could run the script when opening PieChart my popup? El martes, 13 de enero de 2015, 11:11:50 (UTC-5), Daniel LaLiberte escribió: Hi Julian, This problem with PieChart showing its labels in the wrong place

Re: [visualization-api] misalignment percentages the graphic

2015-01-13 Thread 'Daniel LaLiberte' via Google Visualization API
How you proceed depends on how your popup code works. You might have a way of calling a javascript function when the popup has been created, which you could use to then call the chart.draw() method. If not, then perhaps you need to first draw the chart in some element that you create, and give

[visualization-api] groups list

2015-01-13 Thread Anurag Singh
-- Thanks Regards*,* Anurag Singh Phone: 609-897-9670 x 2188 Email: anurag.sysm...@gmail.com Fax: 609-228-5522 Address: 38 Washington Road, Princeton Jn, NJ 08550 [image: cid:image001.png@01CEC4D8.49178020] -- You received this message because you are subscribed to the Google Groups

Re: [visualization-api] misalignment percentages the graphic

2015-01-13 Thread Julian Andres Vela S.
Daniel many thank you very much for your help !!! 2015-01-13 13:28 GMT-05:00 'Daniel LaLiberte' via Google Visualization API google-visualization-api@googlegroups.com: Julian, If you do not see any chart, then perhaps there is a javascript error. Check your javascript console. I only