[visualization-api] Unable to set options in Wordtree chart

2014-11-03 Thread javi garcia
Hi, I'm testing this type with some urls (replacing / as spaces) but I can't set options for the chart I've tried var options = { format: 'implicit', maxFontSize: 20, fontName: 'Times-Roman', width:1280, height:900, colors: ['#e0440e', '#e6693e', '#ec8f6e', '#f3b49f', '#f6c7b6'], word:

[visualization-api] TimeLine Chart getSelection how to get row?

2014-11-03 Thread Григорий Сердюченко
I have next TimeLine Chart google.setOnLoadCallback(drawChart); function drawChart() { var container = document.getElementById('timechart'); var chart = new google.visualization.Timeline(container); var dataTable = new google.visualization.DataTable(); dataTable.addColumn({ type:

[visualization-api] Re: TimeLine Chart getSelection how to get row?

2014-11-03 Thread Григорий Сердюченко
Sorry. var value = dataTable.getValue(selectedItem[0].row,1); Invalid row index undefined. Should be in the range [0-8] -- You received this message because you are subscribed to the Google Groups Google Visualization API group. To unsubscribe from this group and stop receiving emails

[visualization-api] Annotations without default tooltip

2014-11-03 Thread Alexandre Carrie
Hello, I'm using ComboChart with annotations on some bars, but when the bar is too small to permit us to see the annotation, a tooltip is generated. But I don't want this default tooltip because I ever have my own tooltip. Is it possible to delete it?

Re: [visualization-api] Re: TimeLine Chart getSelection how to get row?

2014-11-03 Thread 'Daniel LaLiberte' via Google Visualization API
This is a bug. Thank you for reporting it. The 'bb' property should be 'row', but it was obfuscated by the compiler. We should have a fix for this in a future release, but in the meantime, you should check for both properties so your code will continue to work after this is fixed. Do it like

[visualization-api] Re: Google Timeline Chart date box

2014-11-03 Thread Andrew Gallant
Modifying the date format in tooltips in Timeline charts is not yet supported, sorry. On Saturday, November 1, 2014 9:22:39 PM UTC-4, Craig wrote: I have the below code for a Google timeline graph. When I hover over a bar in the graph, the date in the pop up box only shows the Month and

Re: [visualization-api] Re: TimeLine Chart getSelection how to get row?

2014-11-03 Thread 'Daniel LaLiberte' via Google Visualization API
Actually, this bug ought to be fixed in the very near future, with the v40 release that we hope to push out in the next couple days. On Mon, Nov 3, 2014 at 8:53 AM, Daniel LaLiberte dlalibe...@google.com wrote: This is a bug. Thank you for reporting it. The 'bb' property should be 'row', but

[visualization-api] Re: Unable to set options in Wordtree chart

2014-11-03 Thread Andrew Gallant
Your options should be like this: var options = { wordtree: { format: 'implicit', word: 'home' }, maxFontSize: 20, fontName: 'Times-Roman', width: 1280, height: 900, colors: ['#e0440e', '#e6693e', '#ec8f6e', '#f3b49f', '#f6c7b6'], }; Does that work for

[visualization-api] Re: Annotations without default tooltip

2014-11-03 Thread Andrew Gallant
No, you cannot turn off the annotation tooltips, sorry. On Monday, November 3, 2014 7:07:31 AM UTC-5, Alexandre Carrie wrote: Hello, I'm using ComboChart with annotations on some bars, but when the bar is too small to permit us to see the annotation, a tooltip is generated. But I don't

[visualization-api] Re: Annotations without default tooltip

2014-11-03 Thread Alexandre Carrie
Ok thanks :) . Le lundi 3 novembre 2014 15:09:33 UTC+1, Andrew Gallant a écrit : No, you cannot turn off the annotation tooltips, sorry. On Monday, November 3, 2014 7:07:31 AM UTC-5, Alexandre Carrie wrote: Hello, I'm using ComboChart with annotations on some bars, but when the bar is

[visualization-api] Re: Official Charts Opinion Question: How would you like to retrieve your trendline data?

2014-11-03 Thread northatlanticman
Sergey I rather like your curve fitting charts - in fact I think the whole Charts product is really well done - so thanks for a lot of great work. One use I have been making of your trendlines is to simply fit curves to data points with the intention of then using the results inside a new

[visualization-api] Google Spreadsheets

2014-11-03 Thread northatlanticman
I've noticed a recurring issue with using Google spreadsheets as a data source for charts. I was wondering whether it was just me or whether others had experienced the same issue, which is that if I edit the spreadsheet (say to add some extra rows) there is a high chance that it will no longer

[visualization-api] change font size in columnchart

2014-11-03 Thread Dustin Böttger
Hi folks, how can i change the fontsize in a column chart? I think it is totally easy but i am not able to do is. Hope someone can help me. This is my code: data:text/html, html head script type=\text/javascript\ src=\https://www.google.com/jsapi\;/script script

[visualization-api] Re: Google chart - All series of the given axis must be of the same type

2014-11-03 Thread Shekar Tippur
Sorry about the delay. I dont see setColumns being defined as one of the options for combochart var comboChartByUser = new google.visualization.ComboChart(document.getElementById('chart_div2')); comboChartByUser.setColumns([0, 1, 2]); Gives an error: TypeError: comboChartByUser.setColumns is

[visualization-api] Label Overlap in Bubble Chart.

2014-11-03 Thread Vinod Balasubramanian
In Bubble Chart we have a text overlap. Each bubbles text is getting overlapped. is their a solution to this issue. Can we dynamically place the labels without overlapping. Thanks, Vinod -- You received this message because you are subscribed to the Google Groups Google Visualization API