Re: [visualization-api] Word Tree IDs

2014-10-22 Thread Josh Beagley
Hi Jon, Thanks for the reply. I actually have been using the Org Chart all along, but I was wondering if Word Tree was going to replace Org Chart. I remember reading that Org Chart was either going away or being overhauled, so I'm anxious to see what happens. In my scenario, I'm using Org Ch

[visualization-api] Re: Line chart to skip past a null or 0 value?

2014-10-22 Thread Hai Chau
Thanks a lot -- 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 google-visualization-api+unsubscr...@googlegroups.com. To post to this group, send email

[visualization-api] Re: Help with regionClick and getting data

2014-10-22 Thread dpwilliams2
Got it working, here it is in case any of you need it in the future. google.setOnLoadCallback(drawRegionsMap); function drawRegionsMap() { function selectHandler() { var selection = chart.getSelection(); var state = data.getValue(selection[0].row,0); alert('You

[visualization-api] Re: Help with regionClick and getting data

2014-10-22 Thread dpwilliams2
So I finally figured it out guys. Posting here should anyone else need it. google.setOnLoadCallback(drawRegionsMap); > > function drawRegionsMap() { > > function selectHandler() { > > var selection = chart.getSelection(); > var state = data.getValue(selection[0].row,0); >

Re: [visualization-api] Re: Help with regionClick and getting data

2014-10-22 Thread dpwilliams2
Sergey, Are you talking something more like this? google.setOnLoadCallback(drawRegionsMap); > > function drawRegionsMap() { > var data = google.visualization.arrayToDataTable([ > ['States'], > ['Washington'], > ['Oregon'], > ['Idaho'], > ['Arizona'], >

[visualization-api] Map chart google-visualization-errors-6 !??

2014-10-22 Thread cyb
Hi, i have nothing changed on my code, but if i load a google Map chart i get this error: Chart not displayed due to error: # is not iterable. Full error object follows. Object {id: "google-visualization-errors-6", message: "# is not iterable"} why did this exception appears !? are there so

Re: [visualization-api] Re: Help with regionClick and getting data

2014-10-22 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi, if you're using Chrome you can open the developer tools. From there, you can go to the Console tab to see all your errors. Your particular error is that within the context of selectHandler, chart is undefined, so chart.getSelection can't work. You could solve this either by creating a function

[visualization-api] Re: Help with regionClick and getting data

2014-10-22 Thread dpwilliams2
The coding gets to the first alert test in the selectHandler function but never gets to the second alert. Meaning that it stops at the var selection = chart.getSelection(); portion of code. I just can't figure it out. On Tuesday, October 21, 2014 2:28:06 PM UTC-7, dpwil...@gmail.com wrote: > >

Re: [visualization-api] Re: Can i show number value to the baseline column

2014-10-22 Thread Bill Do
Thanks mr.Daniel LaLiberte ! :) On Wednesday, October 22, 2014 9:20:54 PM UTC+8, Daniel LaLiberte wrote: > > Hi Bill, > > We don't have any support for drawing axis labels on the baseline > positioned in the middle of the chart. It looks li

Re: [visualization-api] Re: Can i show number value to the baseline column

2014-10-22 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Bill, We don't have any support for drawing axis labels on the baseline positioned in the middle of the chart. It looks like a reasonable idea for this kind of application, however, so I expect we will support it some time in the future. On Wed, Oct 22, 2014 at 9:02 AM, Bill Do wrote: > Dea

[visualization-api] Re: Bar chart legend to bottom?

2014-10-22 Thread Andrew Gallant
Set the legend.position option to "bottom": new google.visualization.ColumnChart(document.getElementById('visualization' )). draw(data, { title: "Requirements", legend: { position: 'bottom' } }); On Tuesday, October 21, 2014 4:17:59 PM UTC-4, Abdul Javeed wrote: > > How to ha

[visualization-api] Re: Can i show number value to the baseline column

2014-10-22 Thread Bill Do
Dear all, anyone can help me? :) On Tuesday, October 21, 2014 2:11:14 PM UTC+8, Bill Do wrote: > > Dear all, > I use Google Charts for draw chart. I show baseline in middle chart, and i > want to show number values in baseline (like attachment image)! Can you > help me? > > This is jsFiddle sour