[visualization-api] Re: Geomap taking too long to draw.

2010-08-12 Thread Rômulo Vitoi
So if I give latitute and logintude it will display faster? (I have this information) And how should be my data? On Aug 12, 8:27 am, ChartMan wrote: > Hi > > If you are using 'markers' with the geomap each point needs to be geocoded. > There is a limit for the speed in which points can be geocode

[visualization-api] Re: Annotated Time Line. 500Kb of data cause an error popup in IE.

2010-08-12 Thread midwest
Split data into smaller chunks and draw the chunks with a delayed execution of 1 msec for example, to give the IE a breather. It is slower, but the dialog won't popup. works for me. On Aug 12, 3:38 pm, Jinji wrote: > I'm sorry for having no good news for you. This is a lot of data, and some > bro

Re: [visualization-api] Annotated Time Line. 500Kb of data cause an error popup in IE.

2010-08-12 Thread Jinji
I'm sorry for having no good news for you. This is a lot of data, and some browsers are slower than others... On Tue, Aug 3, 2010 at 11:28 PM, Daniel Steinberg wrote: > Hi, > > I am using about 500Kb of data for a chart that works absolutely great > in Firefox, in Internet Explorer however it cau

Re: [visualization-api] Google Annotated Timeline not displayed in servlet/ when loaded form external file

2010-08-12 Thread akshay dange
try changing the Capabilities setting to "None" or "select" protected boolean isRestrictedAccessMode() { return false; } @Override public Capabilities getCapabilities() { return Capabilities.NONE; } A simple sample from your side will hel

Re: [visualization-api] Re: Transparant background (Interactive Charts)

2010-08-12 Thread Jré Sarenac
A correction to my previous post: This method still doesn't work for Internet Explorer. It works in Firefox, Safari and Chrome. Cheers, Jré On Thu, Aug 12, 2010 at 10:59 AM, Jré Sarenac wrote: > I got it to work by using: backgroundColor: {stroke:null, fill:null, > strokeSize: 0} > Although th

[visualization-api] Labels on Interactive Pie Charts

2010-08-12 Thread Jré
Hey everyone, Is it possible to put labels (text) on slices of interactive pie charts? For example: in this example the labels on the slices are percentages http://code.google.com/apis/visualization/documentation/gallery/piechart.html#Example I'd like it to say Work, Commute, Sleep, etc. instead.

Re: [visualization-api] Re: Transparant background (Interactive Charts)

2010-08-12 Thread Jré Sarenac
I got it to work by using: backgroundColor: {stroke:null, fill:null, strokeSize: 0} Although this was only possible thanks to an example I saw as I did not know I could edit specifics of the backgroundColor. Where can I find detailed information on the properties of vis charts? I.e where can I fin

[visualization-api] Use of HTTP GET or POSt with interactive visualisations

2010-08-12 Thread Mr Morgan
Hello Can anyone advise? I have a situation where I need to use the Google Interactive Charts in a batch job which will run on a server every hour. The job needs to be able to create a small number of images files which can then be cached and displayed on a honepage of an application. The proble

[visualization-api] Google Annotated Timeline not displayed in servlet/ when loaded form external file

2010-08-12 Thread Peter
Hi all, I have been having a bizarre issue with the Google Annotated Timeline and i was just checking to see if anyone else has encountered it. I have developed a Timeline that works perfectly when I define the whole page in my JSP so - -> . However my application is quite large so I have split

Re: [visualization-api] Re: Assertion failed: bucket size must be a non-negative number

2010-08-12 Thread Viz Kid
I can suggest the following hack that might solve your problem. Add the following script tag after the prototype library was initialized: Array.prototype.reduce = undefined; I can't guarantee that it will solve the problem completely but as far as I saw, the charts renders as expected. Viz

Re: [visualization-api] Re: DateFormat ignored on the X-axis.

2010-08-12 Thread Jinji
Feel free to open an issue in the issue tracker. On Thu, Aug 12, 2010 at 4:02 PM, Daniel Steinberg wrote: > Thanks! I hope this is changed in the future :) > > On Aug 8, 11:52 am, Jinji wrote: > > Nope, you're not doing anything wrong. This is how it works now. The date > > format only affects t

Re: [visualization-api] Lock alphabetical order whithin Y-Axis in Motion Chart

2010-08-12 Thread ChartMan
This is not documented so well but try the following: Set "xAxisOption":"_ALPHABETICAL", "orderedByY":false HTH ChartMan On Tue, Aug 10, 2010 at 7:36 PM, Rail wrote: > > Hi guys, > > I have an TreeNode that shows indexes and I would like GAP Minder to > keep the same order of index on the Y-A

[visualization-api] Re: DateFormat ignored on the X-axis.

2010-08-12 Thread Daniel Steinberg
Thanks! I hope this is changed in the future :) On Aug 8, 11:52 am, Jinji wrote: > Nope, you're not doing anything wrong. This is how it works now. The date > format only affects the top time representation. > > On Mon, Aug 2, 2010 at 6:11 PM, Daniel Steinberg wrote: > > > Hi, > > > I noticed tha

Re: [visualization-api] Re: Column chart and scatter chart as images

2010-08-12 Thread ChartMan
I cannot provide exact details for if or when this feature will be available. Sorry ChartMan On Thu, Aug 12, 2010 at 1:36 PM, MartinOShea wrote: > Does this mean that they are going to be worked on and made available > in the future? > > On Aug 12, 11:09 am, ChartMan wrote: > > Thanks for your

Re: [visualization-api] Image chart is cached in FF

2010-08-12 Thread ChartMan
Please send an example of a page where this error occurs. Thanks ChartMan On Thu, Aug 12, 2010 at 11:10 AM, Vinu wrote: > Hi > I am trying to draw an imagechart using the visualization api, I have > 3 datasets and when I call vis.draw, it seems the api is sending a > post to http://chart.apis.g

Re: [visualization-api] Geomap taking too long to draw.

2010-08-12 Thread ChartMan
Hi If you are using 'markers' with the geomap each point needs to be geocoded. There is a limit for the speed in which points can be geocoded. HTH ChartMan On Thu, Aug 12, 2010 at 3:11 AM, Rômulo Vitoi wrote: > There is any tip to increase drawing performance of Geomap? I'm trying > to draw th

Re: [visualization-api] Re: Transparant background (Interactive Charts)

2010-08-12 Thread ChartMan
I will record this bug. Thanks ChartMan On Thu, Aug 12, 2010 at 1:53 AM, Jré wrote: > Setting backgroundColor: 'transparent' worked for me but only in > Firefox. > It shows as a black background in all other browsers :( > > Cheers, > Jré > > On Aug 2, 12:11 am, rein wrote: > > Dear Google Char

[visualization-api] LineChart vertical column text is rotated?

2010-08-12 Thread xy
Hello I'm using the LineChart and for some reason, the vertical column is rotated 90 degrees counter-clockwise, like the title. The column text shouldn't be rotated, so why is it doing this and how to disable this? http://i35.tinypic.com/vralg3.jpg -- You received this message because you are s

[visualization-api] Time line that always starts from 0%

2010-08-12 Thread HKA
Hi! I want to plot the performance of some stocks, like in this graph below: http://www.dax-prognose.de/index.php?section=testi The problem is that I want the graph to start from 0% regardless of time period chosen. How can I make this possible? -- You received this message because you are sub

[visualization-api] Re: skip date / time ranges to avoid constant data plots

2010-08-12 Thread HKA
Are you sure? The charts at google finance are able to skip days and times when stocks are not traded http://www.google.com/finance?q=PINK:HNNMY On 12 Aug, 12:05, ChartMan wrote: > This feature is not supported. > > ChartMan -- You received this message because you are subscribed to the Googl

[visualization-api] Cannot get getstate() to work in Motionchart

2010-08-12 Thread Youssef51
Hi Folks - I have been unable to get a returned value from getstate() in an otherwise completely functional, error-free Motionchart app. I've tried many times, and failed. I've read all kinds of posts here looking for a working example of getstate() in a motionchart script. I can not find a sin

[visualization-api] Re: Column chart and scatter chart as images

2010-08-12 Thread MartinOShea
Does this mean that they are going to be worked on and made available in the future? On Aug 12, 11:09 am, ChartMan wrote: > Thanks for your suggestion. > > ChartMan > > > > On Wed, Aug 11, 2010 at 5:24 PM, MartinOShea wrote: > > Hello > > > Looking over the various interactive charts, I see that

Re: [visualization-api] Column chart and scatter chart as images

2010-08-12 Thread ChartMan
Thanks for your suggestion. ChartMan On Wed, Aug 11, 2010 at 5:24 PM, MartinOShea wrote: > Hello > > Looking over the various interactive charts, I see that tha area > chart, the bar chart, pie chart and line charts are all available as > images as well as interactivly. > > Are there any plans

Re: [visualization-api] AreaChart - setSelections() with GWT and "corechart" package.

2010-08-12 Thread ChartMan
The interaction of the new charts ('corechart' pacakge) for setSelection is not implemented yet. ChartMan On Wed, Aug 11, 2010 at 3:42 PM, Dogan Narinc wrote: > Hi, > > I am using Visualization API through the GWT wrapper. > > When I call the setSelections() method on an AreaChart from the > "co

Re: [visualization-api] skip date / time ranges to avoid constant data plots

2010-08-12 Thread ChartMan
This feature is not supported. ChartMan On Wed, Aug 11, 2010 at 11:37 AM, Tassilo wrote: > hi, > > I am building a stock chart: > http://www.dax-prognose.de/index.php?section=testi > > the google chart is really wonderful. however I would like to skip > certain time ranges in the plot, e.g. 10

Re: [visualization-api] Re: Annotations not appearing in graph

2010-08-12 Thread ChartMan
Tried https and the annotations showed up. ChartMan On Tue, Aug 10, 2010 at 7:27 PM, Maz wrote: > FYI, example of the exact same code, but with the HTTPS version > (missing annotations from graph): > > > http://timeline-demo.s3.amazonaws.com/demo2.html > > Not sure if this is a mistake on my pa

[visualization-api] Re: Assertion failed: bucket size must be a non-negative number

2010-08-12 Thread ynot
Hi, thanks for reporting on this issue. Indeed, I also use the Prototype framework. But I can't update the prototype version as it is implemented in our PHP framework. So any help on fixing the bug in the jsapi would be good. Thanks ynot On 11 Aug., 21:58, Viz Kid wrote: > Hi guys. > > A new ve

Re: [visualization-api] License to Use Visualization API

2010-08-12 Thread GVIZ PM
> > Hi Josh, > Currently the only component that is open sourced is the Data Source Java library . > We might open source additional components, but probably not in the near future. > All the best, > Michael > On Thu, Aug 12, 2010 at 2:09 A

Re: [visualization-api] Re: Assertion failed: bucket size must be a non-negative number

2010-08-12 Thread Viz Kid
Hi Again. The problem was found, however it lies in the code of the prototype library. The version of the library some of you are using (version 1.6.0.3 or below) defines the function 'reduce' of an Array to be: reduce: function()

[visualization-api] Image chart is cached in FF

2010-08-12 Thread Vinu
Hi I am trying to draw an imagechart using the visualization api, I have 3 datasets and when I call vis.draw, it seems the api is sending a post to http://chart.apis.google.com/chart, , it works all good in first request, but for the next request with different datatable again renders the previous