[visualization-api] HELP: State in Nigeria not showing in GeoChart

2012-11-08 Thread Dotun Kola-Olaleye
Hello, I'm working on interactions on a GeoChart with the region as Nigeria (NG). When I set the resolution to 'provinces' and displayMode to 'regions', one of the states in the country (Kebbi; NG-KE) doesn't allow for interactions. Any help in solving this would be appreciated. Thanks.

[visualization-api] Re: Availability of Specific Subdivisions (Serbia in my case)

2012-11-08 Thread Gregounours
Just did. Thanks. On Sunday, November 4, 2012 7:08:16 AM UTC+1, asgallant wrote: I don't know whether they are available or not, but if they're not you can file a feature request herehttp://code.google.com/p/google-visualization-api-issues/issues/listto have them added. On Saturday,

[visualization-api] Value Changes

2012-11-08 Thread Mike Aitken
Hi all, New to this game and slowly teaching myself, I need some help. On this pagehttps://developers.google.com/chart/interactive/docs/animation there is an example called value changes where you can select between tea or coffee, when I paste the code over to my html editor it doesn't work.

[visualization-api] columnChart labels

2012-11-08 Thread Karen Lostritto
I'm very new to this, but I'm trying to make a columnChart from data table grouped. The first column of my data table contains html links which render fine using renderDataTable(grouped) However when I go to create the columnChart the label for each column is actually the html code itself

[visualization-api] json data formatting issue... urgent help required...

2012-11-08 Thread Dave Matthews
My code $data = array('cols' = array(array('label' = 'Time Period', 'type' = 'string')), 'rows' = array()); for ($x=0;$xcount($sp_info);$x++) { $data['cols'][]=array('label' = $sp_info[$x], 'type' = 'number'); } for ($z=0;$zcount($time_frame);$z++) { $data['rows'][$z]

[visualization-api] Re: columnChart labels

2012-11-08 Thread asgallant
You can't use HTML in the labels. If you need them to function as links, you can write javascript that parses the SVG/VML chart code and adds click event handlers to the labels, but doing so would be tricky and any solution you come up with may break with a future API release. On Thursday,

[visualization-api] Re: json data formatting issue... urgent help required...

2012-11-08 Thread asgallant
Every {v, f} pair needs to be in it's own array, so your problem is actually here: for ($z=0;$zcount($time_frame);$z++) { $data['rows'][$z] = array('c' = array('v' = $time_frame[$z], 'f'=null)); } it should be this instead: for ($z=0;$zcount($time_frame);$z++) {

[visualization-api] Column Chart - display a total amount of the stacked amounts

2012-11-08 Thread John Cebedo
Hi, I have a stacked Column Chart and I am wondering if there is a way to display on the graph a number that represents the cumulative amount of each stacked element of a column. -- You received this message because you are subscribed to the Google Groups Google Visualization API group. To

[visualization-api] Re: Column Chart - display a total amount of the stacked amounts

2012-11-08 Thread asgallant
There's no way to add a label to the chart itself. You can add that to the tooltip by either setting the formatted values of your data points to include it or by using the tooltip column rolehttps://developers.google.com/chart/interactive/docs/rolesto build a custom tooltip. On Thursday,

[visualization-api] Re: Value Changes

2012-11-08 Thread Mike Aitken
You're a legend. Thank you very much! -- You received this message because you are subscribed to the Google Groups Google Visualization API group. To view this discussion on the web visit https://groups.google.com/d/msg/google-visualization-api/-/TrF76N72TlUJ. To post to this group, send

[visualization-api] Re: Value Changes

2012-11-08 Thread Mike Aitken
Hi again, Sorry to be a pain, what if I need to bring in more than two rowData? I'd imagine a 'button' won't work, maybe a dropdown menu? Thanks again. Mike -- You received this message because you are subscribed to the Google Groups Google Visualization API group. To view this discussion

[visualization-api] Re: columnChart labels

2012-11-08 Thread Karen Lostritto
Thanks for your response. I actually don't need them to function as links. I'd be happy to just display the text without the link. Is there a simple way of doing this? I'm pretty new to javascript. Thanks! On Thursday, November 8, 2012 9:09:02 AM UTC-8, asgallant wrote: You can't use HTML

[visualization-api] Re: question on slider control

2012-11-08 Thread Vikas NV
I have starred the issue. As a work around I have done this: 1. I have put a select menu, from which users can select an option (these options are mapped to the slider controls) 2. I have text boxes for min max for users to enter 3. Check user's entry of min max are valid 4. I have two buttons