[visualization-api] Get issue during add column dynamically in column chart

2010-08-30 Thread Gopalsamy Ponnuraj
i faced issue of add columns in column chart dynamically. My code is private AbstractDataTable createTable(String xmldata) { DataTable data = DataTable.create(); data.addColumn(ColumnType.STRING, Year); data.addColumn(ColumnType.NUMBER, Gopal,0);

Re: [visualization-api] Is it possible to visualise millions of entry points using the Geomap?

2010-08-30 Thread Joseph Moosman
Does the chart display with, say, 100 data points? You should make sure your data is correctly formatted before digging deeper. On Mon, Aug 30, 2010 at 01:47, steve sbou...@gmail.com wrote: so my question is, in these circumstances, is there any approach I can take which will load all my data

Re: [visualization-api] Formatting numbers in GeoMap

2010-08-30 Thread MC Get Vizzy
data.setFormattedValue(0, 1, 12,345,678); HTH LMKIYHAMQ Vizzy On Mon, Aug 30, 2010 at 1:06 AM, eli eli.co...@gmail.com wrote: Hi I'm using GeoMap and I would like to show the number in a different format then the default. Instead of displaying 12345678 I would like to display 12,345,678

Re: [visualization-api] How to remove tooltip pop-up(on mouseover)from google visualization core chart?

2010-08-30 Thread MC Get Vizzy
These are all good questions. Unfortunately, none of these features are supported at this time. MC Get Vizzy On Thu, Aug 26, 2010 at 11:05 AM, mayur mayuresh...@gmail.com wrote: hi folks, 1) I want to remove the default tooltip window which occur when mouse-over event fire on a

[visualization-api] Re: Formatting numbers in GeoMap

2010-08-30 Thread eli
Thanks, just what I was looking for. On Aug 30, 9:41 am, MC Get Vizzy getvi...@google.com wrote: data.setFormattedValue(0, 1, 12,345,678); HTH LMKIYHAMQ Vizzy On Mon, Aug 30, 2010 at 1:06 AM, eli eli.co...@gmail.com wrote: Hi I'm using GeoMap and I would like to show the number in a

[visualization-api] Re: Removing Margin/Padding on Line Charts

2010-08-30 Thread Maxime Tiran
I don't think there's a way other than using a CSS trick like this: div style=overflow: hidden; div id=chart_div style=position: relative; top: -80px; / div /div On Jul 13, 7:57 am, Patrick Ma fivetwenty...@gmail.com wrote: Anyone know how this is done? The margins are just way too

[visualization-api] Line Chart

2010-08-30 Thread João Paulo Alquéres
Hi, i am using the Visualization API for interactive Line Chart. I am having trouble setting the vertical axis number of labels. There is a configuration for the horizontal axis (hAxis.showTextEvery) but not for the vertical. Anyone can help? Thanks. -- You received this message because you are

Re: [visualization-api] Line Chart

2010-08-30 Thread Jinji
The hAxis.showTextEvery is meant to allow user control over hAxis label skipping. Label skipping helps when there are too many labels and they overlap. In line chart's vertical axis, labels are automatically calculated by the chart, and are supposed to be spaced enough so there will be no overlap,

[visualization-api] Re: Exact maxValue in a column chart

2010-08-30 Thread Mike
Thank you for the info. As an alternative would it be possible to create a line and label where 50,000 is on the graph so that even though the graph goes to 60,000 I can manually put a big horizontal line at 50,000. On Aug 29, 9:37 am, MC Get Vizzy getvi...@google.com wrote: Sorry Mike, this is

[visualization-api] Re: Line Chart

2010-08-30 Thread João Paulo Alquéres
Hi Jinji, I put a printscreen in http://www.flickr.com/photos/49033...@n00/4942583782/ Please take a look. Thanks for your help. On 30 ago, 12:24, Jinji jinji@gmail.com wrote: The hAxis.showTextEvery is meant to allow user control over hAxis label skipping. Label skipping helps when there

Re: [visualization-api] Re: Line Chart

2010-08-30 Thread Jinji
OK, I see the snapshot. What's the problem with it? On Mon, Aug 30, 2010 at 9:37 PM, João Paulo Alquéres j...@yahoo.com wrote: Hi Jinji, I put a printscreen in http://www.flickr.com/photos/49033...@n00/4942583782/ Please take a look. Thanks for your help. On 30 ago, 12:24, Jinji

[visualization-api] Bind JS Arrays to Annotated Timeline

2010-08-30 Thread Chris
Does anyone know how to bind two arrays (x and y values) to the annotated line chart? Thanks -- You received this message because you are subscribed to the Google Groups Google Visualization API group. To post to this group, send email to google-visualization-...@googlegroups.com. To

[visualization-api] link accounts from a dropdown option

2010-08-30 Thread Wilson Galter
I've been trying to create list of Items in linked to another spreadsheet that would be totaled in to another spread sheet. for example: Sheet 1 has 3 columns date, product(this is the item that needs to populate via link), Description, amount Some what like a quickbooks register were you

[visualization-api] Re: Line Chart

2010-08-30 Thread João Paulo Alquéres
So, i thought that for the vertical axis, i could have more than one stop between 0 and 100%. By default, the chart only loads 3 labels (0, 50 and 100%). I would like to see at least more 2 stops, one at 25% and other at 75%, so the final layout for the vertical axis would be like 0, 25, 50, 75

[visualization-api] Using GooglesTooltip in custom visualization

2010-08-30 Thread Ben
Hello all I'm coding a custom visualization. I've come to the point, where I would like to implement a tooltip when clicking on the parts of the chart. Instead of coding the tooltips myself, I thought it might be best to use Googles implementation of the tooltips. Is this possible? Do you have a