[visualization-api] Line breaks in the vAxis

2012-08-06 Thread API Developer
Hi, I'm trying to add line-breaks in my chart to better display data like [0, 4, 6, 10, 3, 100, 1233]. Do you know if there's a way to set a vAxis break like in the picture? http://www.tushar-mehta.com/excel/newsgroups/broken_y_axis/tutorial/ -- You received this message because you a

[visualization-api] Re: Download libraries and customize charts

2012-08-07 Thread API Developer
Hey Asgallant, Do you know if there is a way to include the 1's if I'm using a stacked column chart? It says I'm not allowed to use another baseline other than 0. On Tuesday, July 17, 2012 5:45:25 PM UTC-4, asgallant wrote: > > Technically, you can't start the baseline at 0, because that would r

[visualization-api] ChartWrapper and internal data

2012-08-13 Thread API Developer
Hey guys, I'm creating a structure that implements the ChartWrapper and was wondering if someone could clarify some specifics as to why it works. Currently I hold the data (google DataTable) inside of the wrapper and use the getDataTable() and setDataTable() to access it and make small changes

[visualization-api] A better way to update data

2012-08-14 Thread API Developer
Hey guys, Does anybody know a good way to insert rows into the dataTable? Would it be better to just add directly to the data using data.addRows() or use a separate matrix and use google.visualization.arrayToDataTable? -- You received this message because you are subscribed to the Google Groups

[visualization-api] Grouping in the DataTable

2012-08-14 Thread API Developer
Hey guys, Do you know if it's possible to keep the domain the same if you want to group based off another variable entirely? My data looks like this: var data = google.visualization.arrayToDataTable([ ['ID', 'Life Expectancy', 'Fertility Rate', 'Region', 'Population' ], ['CAN',

[visualization-api] Re: A better way to update data

2012-08-14 Thread API Developer
annot detect the Date type nor can >> it read Javascript literals in the data. See >> https://developers.google.com/chart/interactive/docs/reference#google.visualization.arraytodatatable >> >> for more info. >> >> On Tuesday, August 14, 2012 10:06:01 AM UTC-4, API De

[visualization-api] Re: Grouping in the DataTable

2012-08-15 Thread API Developer
ualization.Table(document.getElementById ('grouped_table')); grouped_table.draw(grouped_dt, null); } ​ Will this sort of thing work if I have tooltips/things with roles? Do I process them like all the other columns? On Tuesday, August 14, 2012 10:55:40 PM UTC-4, asgallant wrote: >

[visualization-api] Re: Grouping in the DataTable

2012-08-15 Thread API Developer
, role: 'tooltip'}, > > On Wednesday, August 15, 2012 3:14:55 PM UTC-4, API Developer wrote: >> >> I was thinking about doing something like this: >> >> function drawJoin() { >> var dt = google.visualization.arrayToDataTable([ >> ['D

[visualization-api] Re: Grouping in the DataTable

2012-08-16 Thread API Developer
the data, use > the #setColumnProperty method to set the column's role: > > // set the fifth column to the 'tooltip' role > groupedData.setColumnProperty(4, 'role', 'tooltip'); > > On Wednesday, August 15, 2012 8:00:47 PM UTC-4, API Developer wr

[visualization-api] Re: Grouping in the DataTable

2012-08-16 Thread API Developer
/ set the fifth column to the 'tooltip' role > groupedData.setColumnProperty(4, 'role', 'tooltip'); > > On Wednesday, August 15, 2012 8:00:47 PM UTC-4, API Developer wrote: >> >> That's great! >> >> Are you sure the role: 'to

[visualization-api] Re: Grouping in the DataTable

2012-08-16 Thread API Developer
), so if you want to add any > extra data to the tooltip, go right ahead. > > On Thursday, August 16, 2012 12:14:48 PM UTC-4, API Developer wrote: >> >> Hey asgallant, >> >> Is there any way to get the information for what's currently being >> grouped on? I

[visualization-api] Using the CategoryFilter

2012-08-16 Thread API Developer
Hey guys, Do you know if it's required that we use a DataTable when using the categoryFilter? In addition, is there any way to have it without having a dashboard too? I'm trying to make a wrapper class so I can use the look and functionality of the control with my own implementation on it's st

[visualization-api] Re: Using the CategoryFilter

2012-08-16 Thread API Developer
being able to before). You do > have to have a DataTable (or DataView), though. > > On Thursday, August 16, 2012 3:05:40 PM UTC-4, API Developer wrote: >> >> Hey guys, >> >> Do you know if it's required that we use a DataTable when using the >> catego

[visualization-api] Role columns on the domain

2012-08-16 Thread API Developer
Hey guys, Do you know if it's possible to place a tooltip on the domain of the data? I've been trying and so far haven't been successful. Ex: var data = new google.visualization.DataTable(); data.addColumn('string', 'month'); data.addColumn({'type': 'string', 'role', 'tooltip'}); data.add

[visualization-api] Showing Children in Treemap

2012-11-06 Thread API Developer
Hello, I was wondering if it was possible to create a treemap that wouldn't average/sum the children nodes to create the value of the category like in the playground example. What I'm looking for looks like the picture on this page: http://blog.revolutionanalytics.com/2010/02/how-to-make-a-mosai

[visualization-api] Re: Showing Children in Treemap

2012-11-09 Thread API Developer
Thanks so much! On Wednesday, November 7, 2012 9:30:33 AM UTC-5, Tayeb Karim wrote: > > Are you looking for the "maxPostDepth" option? > > https://developers.google.com/chart/interactive/docs/gallery/treemap > > > -- You received this message because you are subscribed to the Google Groups "Goo

[visualization-api] TreeMap Help

2012-11-17 Thread API Developer
Good Morning, I was wondering if there was any good way of displaying a negative size in the tree-map chart. I know it says that only positive values are supported, but I was wondering if you knew of a way to create striping on the negative boxes so we can display them by there absolute value a

[visualization-api] Re: TreeMap Help

2012-11-17 Thread API Developer
Also, is logScale supported? I can build that in, but I wanted to make sure it wasn't beforehand. Thank you! On Sunday, November 18, 2012 2:04:57 AM UTC-5, API Developer wrote: > > Good Morning, > > I was wondering if there was any good way of displaying a negative size in >

[visualization-api] Re: TreeMap Help

2012-11-18 Thread API Developer
t; > You could use the 4th column (color values) to discern positive from > negative values, but you are limited to solid colors; you can't stripe. > There is no size legend available; neither is logScale supported. > > On Sunday, November 18, 2012 2:09:07 AM UTC-5, API Dev

[visualization-api] Re: TreeMap Help

2012-11-18 Thread API Developer
Also, are any roles supported? Can I create annotations, use certainty or interval? Thanks again! On Sunday, November 18, 2012 11:14:46 AM UTC-5, API Developer wrote: > > Thanks a lot asgallant! > Do you know if it's possible to display tooltips with the TreeMap? Also, >

[visualization-api] Re: how to add mouseover to google treemap

2012-11-18 Thread API Developer
Thanks a lot asgallant! Do you know what the normal tooltips look like? I tried to enable them on the playground, but it didn't do anything... On Sunday, November 11, 2012 3:47:41 PM UTC-5, asgallant wrote: > > TreeMaps don't support the same types of tooltips as the rest of the > charts. You w

[visualization-api] Re: TreeMap Help

2012-11-18 Thread API Developer
o column roles supported by > the TreeMap charts. > > On Sunday, November 18, 2012 11:26:33 AM UTC-5, API Developer wrote: >> >> Also, are any roles supported? Can I create annotations, use certainty or >> interval? >> >> Thanks again! >> >> On Sund

[visualization-api] Re: TreeMap Help

2012-11-18 Thread API Developer
ned for conveying data. I don't > believe there is a way to add numbers or other labels to the color scale. > > On Sunday, November 18, 2012 3:21:57 PM UTC-5, API Developer wrote: >> >> Thanks again Asgallant! >> >> Do you know if you can get numbers to show o

[visualization-api] Sorting the DataTable

2012-07-22 Thread API Developer
Hello everybody, I'm pretty new to the Google Chart API and was wondering if anybody knew if you could specify sorting instructions in more depth than just sort by column 1, then 2, then 3 for the DataTable. I'm hoping that Google has something to sort it's rows that resembles more of a functio

[visualization-api] Re: Google Charts Are Awesome

2012-07-26 Thread API Developer
Damn straight! On Thursday, July 26, 2012 4:48:33 PM UTC-4, Andrew Drozdov wrote: > > Anyone agree? -- 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-vis

[visualization-api] Animation not working correctly

2012-07-26 Thread API Developer
Hi, I'm trying to add an animation to my charts when I insert data into the middle of the DataTable. Currently I've made a couple prototypes that work, but I can't seem to get the full program to work. I think my problem revolves around the fact that I'm waiting for a response of more data to

[visualization-api] Re: Animation not working correctly

2012-07-30 Thread API Developer
o fix your problem? On Friday, July 27, 2012 8:13:44 PM UTC-4, Jeff Bolton wrote: > > Sorry, I got it working now > > On Thursday, July 26, 2012 2:29:40 PM UTC-7, API Developer wrote: >> >> Hi, >> >> I'm trying to add an animation to my charts when

[visualization-api] Re: Change the cursor when hover on the chart.

2012-07-31 Thread API Developer
Hey asgallant, If I wanted to add keyboard functionality in the Google Chart API, would it be possible to use JQuery in a similar way to what's specified above? $('iframe').contents().find('g')... I'd imagine I'd need to use browser-based if statements to make sure this works, but is it possible

[visualization-api] Re: Change the cursor when hover on the chart.

2012-07-31 Thread API Developer
the charts, but I don't > know what use binding keypresses to the SVG would be. > > On Tuesday, July 31, 2012 8:47:56 AM UTC-4, API Developer wrote: >> >> Hey asgallant, >> >> If I wanted to add keyboard functionality in the Google Chart API, would >> it