[visualization-api] Re: Help! on Annotation Chart creation from Mysql DB and PHP page

2014-09-09 Thread Kasper Derkinderen
Hi everyone, Yesterday I played around with google charts. It's nice and powerful, buth I had some troubles loading information from my mySQL database. My files are similar as yours so I post them here hoping somebody can help me out: html page (with just a few values in data.addRows :

[visualization-api] Re: CHANGING CHART TITLE'S COLOR AND FONT

2014-09-09 Thread Florent Ducos
Hi asgallant, Thanks for your answer, really helpful. You spotted exactly what I'm trying to do. One more question remain: Where should I insert the titleTextStyle in my Javascript? Please see my Donut_Chart.html attached. Many thanks for your help, Le mardi 17 septembre 2013 17:35:35 UTC+1,

[visualization-api] Same width for each bar

2014-09-09 Thread Schabagh
Hi, My X-Axis shows always bars for 31 days. I would like: 1. that my x-Axis shows the title like this: 1 2 3 4 ... 28 29 30 31 instead of 08.06.2014, also only the days for each bar. 2. I have a problem with the width of bars in my Column Chart. I would like to have the bars with the

Re: [visualization-api] Re: Display total at top of legend in pie chart

2014-09-09 Thread manish philip
Hi Andrew, var formatter = new google.visualization.NumberFormat({prefix: 'Rs.'}); formatter.format(data, 3); I am using above formatter for display currency, it displays in ###,###.## sets of three but i want to display in custom format. eg. #,##,##,##,###.## i could not find any

[visualization-api] Download?

2014-09-09 Thread Darrin Kay
Can you download the code, we have a closed network and would love to use google charts but can not hit it from the internet? -- 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

[visualization-api] Re: Multiple rows in one tooltip

2014-09-09 Thread Alexandre Carrie
Thanks for your answer. Meanwhile I have found a solution. In my controller file, I have added a new column in the array I send to my view file. This column contains an array with all the activities for each seances. So in my view file I can use my data as I want. The final result :

[visualization-api] Re: Same width for each bar

2014-09-09 Thread Schabagh
Hi, I have solved the problem with the Day of Date. I have saved the day instead of whole date in my DataTable as string. But I have now the same day on my tooltip and not the whole Date. Is there another solution for my problem? Thamks Am Dienstag, 9. September 2014 12:14:44 UTC+2 schrieb

Re: [visualization-api] Download?

2014-09-09 Thread 'Jon Orwant' via Google Visualization API
Google Charts is a library that has to be loaded over the net. Sorry! Jon On Tue, Sep 9, 2014 at 6:55 AM, Darrin Kay btroop...@gmail.com wrote: Can you download the code, we have a closed network and would love to use google charts but can not hit it from the internet? -- You received

[visualization-api] Re: Same width for each bar

2014-09-09 Thread Andrew Gallant
If you post some sample code I can use to replicate the chart, I will see what I can do to figure out what you need to change. On Tuesday, September 9, 2014 8:10:11 AM UTC-4, Schabagh wrote: Hi, I have solved the problem with the Day of Date. I have saved the day instead of whole date in

Re: [visualization-api] Re: Display total at top of legend in pie chart

2014-09-09 Thread Andrew Gallant
You should be able to use an ICU decimal pattern http://icu-project.org/apiref/icu4c/classDecimalFormat.html#_details to format the number: var formatter = new google.visualization.NumberFormat({pattern: 'Rs\'.\' #,##,###.##'}); formatter.format(data, 3); However, the NumberFormatter does

[visualization-api] Re: Same width for each bar

2014-09-09 Thread Schabagh
Hello Andrew, thanks for your reply. I get the chart data form a database like this: Case 1 (my first post): var data = google.visualization.arrayToDataTable([ ['Date', 'Value1', 'Value2', 'Value3', 'Value4'], ['2009/07/01', 1336060,400361,1001582, 997974],