[visualization-api] Re: Seeing high CPU utilization.

2014-01-17 Thread asgallant
When you redraw, are you feeding new data to the same instance of the chart object, or are you creating a new chart object each time? It would be helpful to see the refresh code as well. On Thursday, January 16, 2014 6:45:16 PM UTC-5, Kevin Buchan wrote: I have a process that runs through

[visualization-api] trendlines in stacked column charts

2014-01-17 Thread Philipp Brömser
Hi there, first of all thanks for this excellent library, I use it a lot and like the new updates. I have a problem with the new trendlines feature in stacked column charts though - they are not stacked - is there an option to achieve this? Thanks in advance -- You received this message

Re: [visualization-api] trendlines in stacked column charts

2014-01-17 Thread Sergey Grabkovsky
Hello, could you please elaborate on what behavior you would expect from a trendline on a stacked bar chart? It seems to me that the most sensible thing that we can do is what we already do, just treat the series as independent data. This also seems to be what LibreOffice does, and Excel probably

[visualization-api] Re: Seeing high CPU utilization.

2014-01-17 Thread Kevin Buchan
Thanks for your response. The developer is using the same code to populate the graphs as update them. Here is the actual code (note that this jsFiddle won't work... it's just for readability.) http://jsfiddle.net/KevinBuchan/vKqp6/ On Friday, January 17, 2014 10:48:51 AM UTC-5, asgallant

Re: [visualization-api] Re: How do I create an OrgChart with all nodes collapsed when first displayed?

2014-01-17 Thread Tim Kasper
Four year later... This has saved me about three hours of works that otherwise would have frustrated me to no end. Thank you so much Viz Kid. All the best, Tim On Thursday, February 18, 2010 3:00:19 AM UTC-5, Viz Kid wrote: Have a look at the playground at the org chart example:

[visualization-api] Re: Seeing high CPU utilization.

2014-01-17 Thread Kevin Buchan
Boom! Problem solved. Thanks! On Friday, January 17, 2014 1:45:27 PM UTC-5, asgallant wrote: That is going to recreate the chart object every time the chart is drawn, which I suspect is the root problem. IE is probably not properly garbage collecting the old chart objects/chart

[visualization-api] How would we do annotations in Google charts

2014-01-17 Thread NK
I created a column chart. Is it possible to add annotation to the data fields (especially 1st label field). Can I do it using html sup tags ie: sup2/sup.? I tried using /u (unicode characters), but that is not supported by all the browsers. Does Google Chart support html in the data field,

[visualization-api] Re: How would we do annotations in Google charts

2014-01-17 Thread asgallant
You cannot use HTML in the labels. You can, however, annotate data points using the built-in annotation column rolehttps://developers.google.com/chart/interactive/docs/roles#annotationrole . On Friday, January 17, 2014 4:15:15 PM UTC-5, NK wrote: I created a column chart. Is it possible to

[visualization-api] Color coded country world map

2014-01-17 Thread Kurt Heiss
Hi- I am trying to color code countries in a world map but not having any success to date. I have assigned POCs to specific countries and then would like to color code by region. I am using the following code: html head script type='text/javascript' src='https://www.google.com/jsapi'/

[visualization-api] Re: Color coded country world map

2014-01-17 Thread asgallant
The GeoChart colors regions by value, so you have to assign values to each country, and then build the colorAxis option to match the values. As an example, if you had 4 countries with the values 1, 2, 3, 4 that you want colored green, blue, yellow, and red, then you would build your options

Re: [visualization-api] Re: Color coded country world map

2014-01-17 Thread Kurt Heiss
In my code context, where does one assign the color value ['Country', 'Manager'], ['Argentina', 'Alexis'], On Fri, Jan 17, 2014 at 2:10 PM, asgallant drew_gall...@abtassoc.comwrote: The GeoChart colors regions by value, so you have to assign values to each country, and then build the

[visualization-api] Re: How would we do annotations in Google charts

2014-01-17 Thread Tim Oliver
Are you able to do this for any of the fields? I would like to do it for the legend so we can make a footnote (superscript) On Friday, January 17, 2014 4:46:31 PM UTC-5, asgallant wrote: You cannot use HTML in the labels. You can, however, annotate data points using the built-in annotation