[visualization-api] Re: How to implement drill down deature in google chart

2014-10-28 Thread prajna alva
can u show me some sample using chart wrapper as em drwing in dashboard. Thank you Regards, Prajna On Tuesday, 28 October 2014 05:53:14 UTC+5:30, Andrew Gallant wrote: You can take the same concept from my example and apply it for your needs; just group the data by week/month/year, or

[visualization-api] Re: How to implement drill down deature in google chart

2014-10-28 Thread prajna alva
//Drill down // create a dummy chart to serve as a placeholder var dummy3 = new google.visualization.ChartWrapper({ chartType: 'Table', containerId: 'dummy_div3', options: { width:

[visualization-api] Re: Column Chart - Show percentage above each bar

2014-10-28 Thread Andrew Gallant
You can add an annotation column to your data. You can use a DataView to calculate this automatically for you: var view = new google.visualization.DataView(dataTable); view.setColumns([0, 1, 2, 3, { type: 'string', role: 'annotation', sourceColumn: 2, calc: function (dt, row) {

[visualization-api] Re: How to remove the X,Y axis grid lines on Column chart

2014-10-28 Thread born2achieve
Hi Andrew, Thanks for your reply. I tried that already. Here is my code: var options = { title: Your Summary, width: 400, height: 400, bar: { groupWidth: 95% }, legend: { position: none },

Re: [visualization-api] Re: How to remove the X,Y axis grid lines on Column chart

2014-10-28 Thread 'Daniel LaLiberte' via Google Visualization API
The vertical gridlines are actually associated with the horizontal axis, since they are based on where the horizontal ticks are placed. So you need to specify your gridlines.color option in the hAxis options rather than the vAxis options. This is a frequent confusion, and we are wondering if

[visualization-api] Re: How to remove the X,Y axis grid lines on Column chart

2014-10-28 Thread born2achieve
Hi Daniel, Great, I understood now what could be the issue. I resolved. Here is my resolved code after your TIP, hAxis: { //title: 'Status', minTextSpacing: 3, maxAlternation: 1, titleTextStyle: {

[visualization-api] Google chart API Rules Discussion

2014-10-28 Thread born2achieve
Hi, I tried to understand the Google API chart concept and started with the help of some guru's on this forum. but have couple of questions. 1. Can i use this Google API chart call in my website as my website will be used by my customers. 2. As this API is on load call [every time the script

Re: [visualization-api] Google chart API Rules Discussion

2014-10-28 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi, 1. You can absolutely use the Google Chart API on your website. 2. That doesn't sound quite right. If your server does not have internet, it won't be able to serve the page with the charts in the first place. If it is able to serve the HTML page with the chart, then there will be no issue, as

Re: [visualization-api] Google chart API Rules Discussion

2014-10-28 Thread karthikeyan muthusamy
Hi Sergey, Wonderful and thanks a lot for clearing my queries. As far as i know, this is the best free chart and more useful and elegant. Kudos to Google. I love if we have downloadable version and it's a great move that Google is working on downloadable version. Once again thanks a lot for your

[visualization-api] Geo Chart not working with JSON

2014-10-28 Thread Manuel
Hi, I just started with the google visualization API (actually with the whole html/php etc. thing :-) ). So what I've got right now is the following PHP: !-- Datei zum bereitstellen von Daten für GEO-CHART -- ?php $MYSQL_HOST=localhost; $MYSQL_BENUTZER=root;

Re: [visualization-api] Geo Chart not working with JSON

2014-10-28 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Manuel, I wasn't able to reproduce your issue, but here is a jsfiddle that has the code you wrote: http://jsfiddle.net/o4banc3z/ I hope that helps. On Tue Oct 28 2014 at 1:36:07 PM Manuel manuel.si...@googlemail.com wrote: Hi, I just started with the google visualization API (actually

[visualization-api] Re: Can I use ChartRangeFilter for Timeline charts

2014-10-28 Thread Nick Pepperling
Do you know if there is any way to freeze the position of the rows? As it is now, say for example we have a 4 row chart with each row labeled A in [0][0], B in [0][1], C in [0][2], and D in [0][3]. When you you alter the filter, the value of the labels in column 0 will change based on which

[visualization-api] Official Charts Opinion Question: How would you like to retrieve your trendline data?

2014-10-28 Thread Sergey
Dearest Google Charts users, We have been working hard on improving charts, and now need your input. We are considering adding a few methods to our corecharts to help you get data about your trendlines, such as the r^2 value. However, we're not quite sure how you’ll want to use them. We

Re: [visualization-api] Geo Chart not working with JSON

2014-10-28 Thread Manuel
Hey Sergey, thank you very much for your answer. Everything works with your code. My problem now is that I don't know how I get the data out of my php-file in a way that it will be displayed. I mean sth. like this: var data = new google.visualization.DataTable( GET ME THE DATA OUT OF GEO. php);

Re: [visualization-api] Geo Chart not working with JSON

2014-10-28 Thread 'Sergey Grabkovsky' via Google Visualization API
It seemed like you were on the right track with the jquery stuff, but it's a bit hard for me to debug it. My guess is that you should be using a newer version of jQuery. My suggestion would be to use the newest version of jQuery. You can use the google hosted version for that: script src=//

Re: [visualization-api] Geo Chart not working with JSON

2014-10-28 Thread Manuel
Thank you so much. Now it works like a charm :-D Am Dienstag, 28. Oktober 2014 20:42:50 UTC+1 schrieb Sergey: It seemed like you were on the right track with the jquery stuff, but it's a bit hard for me to debug it. My guess is that you should be using a newer version of jQuery. My

[visualization-api] Re: Column Chart - Show percentage above each bar

2014-10-28 Thread Nicole Goldup
Thanks Andrew. It works, however the values are off center. Is it possible to make the percentages centered? Regards, Nicole On Tuesday, October 28, 2014 11:55:06 PM UTC+11, Andrew Gallant wrote: You can add an annotation column to your data. You can use a DataView to calculate this

[visualization-api] Re: Can I use ChartRangeFilter for Timeline charts

2014-10-28 Thread Andrew Gallant
As I recall, the bars are placed in the order of the rows in the DataTable, so if you sort your data by row label, the Timeline rows should always be in the same order. On Tuesday, October 28, 2014 2:30:23 PM UTC-4, Nick Pepperling wrote: Do you know if there is any way to freeze the position

[visualization-api] Re: Column Chart - Show percentage above each bar

2014-10-28 Thread Andrew Gallant
The SVG text nodes that make up the annotations inherit the text-align style of parent elements, which your CSS has set to left in layout.css: #headerCenter, #bannerCenter, #pageTitleCenter, #mainContentCenter, #footerCenter, #contentBottomCenter { width:93.75%; /* (960 / 1024) x 100 */

[visualization-api] Re: Column Chart - Show percentage above each bar

2014-10-28 Thread Nicole Goldup
Hi Andrew, I have figured it out. When I decreased the annotation font size, it centered itself. Regards, Nicole On Wednesday, October 29, 2014 11:56:28 AM UTC+11, Andrew Gallant wrote: The SVG text nodes that make up the annotations inherit the text-align style of parent elements, which