Re: [visualization-api] Gow to make fixed width of each bar in Bar Charts

2016-02-24 Thread Якушев Владимир
thanks a lot I understand the idea среда, 24 февраля 2016 г., 17:33:11 UTC+3 пользователь Daniel LaLiberte написал: > > Currently, you have to control the bar width indirectly, by specifying the > appropriate chartArea.height in your case. > In the newest release, still 'upcoming' but about to

[visualization-api] ReferenceError: Hh is not defined

2016-02-24 Thread Oleksandr Gochu
Hi, I'm stuck on one problem. All of my team can see properly data on https://google-developers.appspot.com/chart/interactive/docs/gallery/linechart but I am not . I've received a banch of console errors in "Developer tools" ... Uncaught ReferenceError: Hh is not defined Uncaught TypeError:

[visualization-api] Google Bubble Chart - Dual X axis - Check Box

2016-02-24 Thread josephvijoe
Hi All, I would like to include a check box in my bubble charts, which when enabled defines a different column as X axis. Could someone please help me with this requirement ? Is there any API that makes this requirement feasible ? -- You received this message because you are subscribed to th

Re: [visualization-api] Rounding Mean numbers

2016-02-24 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Chris, Where are these numbers showing up, in tick labels or in tooltips? You have to handle each case slightly differently. The tick labels can be formatted by using an option like this: hAxis: { format: '#.##' } // use #.00 if you want to always show 2 digits after the decimal point. F

[visualization-api] Google Charts v44 Pushed

2016-02-24 Thread 'Daniel LaLiberte' via Google Visualization API
We have pushed Google Charts v44. Summary of changes for v44: - Corecharts: - Timeofday values now use UTC internally, which fixes problems with truncated timeofday axes. - Added options to specify bar.width, bar.gap, bar.group.width (was bar.groupWidth) andbar.group.g

Re: [visualization-api] Legenda do Google Chart

2016-02-24 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Vanessa, The legend paging are enabled automatically once you have enough series that more than one 'page' of legend items is required. The triangles should be drawn with a more appropriate size in recent versions. See https://developers.google.com/chart/interactive/docs/basic_load_libs for i

[visualization-api] Legenda do Google Chart

2016-02-24 Thread Vanessa Ogassawara
Boa tarde, gostaria de saber se existe como manipular a paginação da legenda do google chart, quando tenho um resultado com muitas linhas. Muito obrigada. -- You received this message

Re: [visualization-api] Re: tableChart custom column label, lineChart delete extra space

2016-02-24 Thread Jason
Oh. You are absolutely correct. I don't know how I missed that the method was actually part of the DataTable class haha. Sorry about that! On Wednesday, February 24, 2016 at 1:59:36 PM UTC-5, Daniel LaLiberte wrote: > > You found the setColumnLabel method under the DataTable section rather >

Re: [visualization-api] Re: tableChart custom column label, lineChart delete extra space

2016-02-24 Thread 'Daniel LaLiberte' via Google Visualization API
You found the setColumnLabel method under the DataTable section rather than the DataView section. I know it can be confusing the way the document is constructed. You should be able to modify the underlying data table of a data view, but I'm not actually sure whether the column labels will be upd

Re: [visualization-api] Re: tableChart custom column label, lineChart delete extra space

2016-02-24 Thread Jason
Hey Daniel, Okay I am little confused by that. I think I must be misunderstanding some of the material I have read, no surprise as I do not have must experience in this. So when I read about this method of the DataView class I thought that was exactly what you could do. When you use a DataView

Re: [visualization-api] Combo Chart - Line can be started from 0 point and end to last point?

2016-02-24 Thread 'Daniel LaLiberte' via Google Visualization API
If you are loading different data each time, then you will have to compute the ticks array from your data by some means. You'll also have to determine the viewWindow.max from the number of rows. Whether you use odd values for where your names go is up to you. On Wed, Feb 24, 2016 at 12:00 PM, Mu

Re: [visualization-api] Combo Chart - Line can be started from 0 point and end to last point?

2016-02-24 Thread Muhammad Liaquat
If i am load data dynamically then I will use V: odd series? On Wednesday, 24 February 2016 21:56:41 UTC+5, Daniel LaLiberte wrote: > > Since you want strings for your Name column, it would probably be easiest > to actually keep using numbers, but also use the 'ticks' option like this: >

Re: [visualization-api] Combo Chart - Line can be started from 0 point and end to last point?

2016-02-24 Thread 'Daniel LaLiberte' via Google Visualization API
Since you want strings for your Name column, it would probably be easiest to actually keep using numbers, but also use the 'ticks' option like this: hAxis: { viewWindow: { min: 0, max: 6 }, ticks: [{v: 1, f: 'ABC'}, {v: 3, f: 'DEF'}, {v: 5, f: 'GHI'}] }, http://

Re: [visualization-api] Combo Chart - Line can be started from 0 point and end to last point?

2016-02-24 Thread Muhammad Liaquat
I have to make data as below var data = google.visualization.arrayToDataTable([ ['Name', 'Average Level', 'District Average'], ['ABC', 3, 3.89771634615385], ['DEF', 5, 3.89771634615385], ['GHI', 4.5, 3.89771634615385], ['JKL', 3.1, 3.89771634615385] ]); http://jsfiddle.net/vmb4odkt/14/ On

Re: [visualization-api] Combo Chart - Line can be started from 0 point and end to last point?

2016-02-24 Thread 'Daniel LaLiberte' via Google Visualization API
Your data does not correspond to what you are trying to draw. This is closer: http://jsfiddle.net/vmb4odkt/14/ You don't need the extra column for the extensions of the line, since you can add them to the series 1 line. On Wed, Feb 24, 2016 at 11:04 AM, Muhammad Liaquat < muhammad.liaq...@gmail

[visualization-api] Combo Chart - Line can be started from 0 point and end to last point?

2016-02-24 Thread Muhammad Liaquat
I have tried to update many option and data but couldn't render chart as expected (screenshot attached) http://jsfiddle.net/vmb4odkt/ -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To unsubscribe from this group and stop receiving

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-02-24 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Natarajan, You should be able to use html2canvas to save the charts as images, as the stackoverflow post suggests. You may be aware that some of our charts (like ComboChart and the rest of the charts provided by the 'corechart' package) support getImageUri, which will basically allow you to sav

Re: [visualization-api] different between new google.charts.Bar & google.visualization.ComboChart

2016-02-24 Thread natarajan govindavel
Hi Sergey, Is there any other way to save material chart as images. like given in that link : http://stackoverflow.com/questions/6887183/how-to-take-screen-shot-of-a-div-with-javascript Thanks Natarajan Govidavel On Friday, February 19, 2016 at 8:43:59 PM UTC+5:30, Sergey wrote: > > So I don't

Re: [visualization-api] Gow to make fixed width of each bar in Bar Charts

2016-02-24 Thread 'Daniel LaLiberte' via Google Visualization API
Currently, you have to control the bar width indirectly, by specifying the appropriate chartArea.height in your case. In the newest release, still 'upcoming' but about to be 'current', there is a new bar.width option, though it will still be constrained by the chartArea height, which defaults to wh

Re: [visualization-api] Reference Error google is not defined - Following tutorial - Embedding a Chart in a Spreadsheet

2016-02-24 Thread 'Daniel LaLiberte' via Google Visualization API
If you are using the Sheets Script editor, then you need to go through that AppsScripts api to make charts: https://developers.google.com/apps-script/reference/charts/ I don't see that they support the Gantt chart, however, so you may be out of luck until they do support it. On Tue, Feb 23, 2016 a

Re: [visualization-api] Re: tableChart custom column label, lineChart delete extra space

2016-02-24 Thread 'Daniel LaLiberte' via Google Visualization API
A DataView doesn't let you change the column labels except by using setColumns to specify the entire set of columns, including labels. On Tue, Feb 23, 2016 at 5:05 PM, Jason wrote: > Daniel, > > I see. Thank you. I assumed that I could use the same subset of SQL > querying as used in Google Spre

[visualization-api] Help: Customization of Column Chart; Show sum of total vertical bar data

2016-02-24 Thread durlove roy
Is it possible to show the total "Percentage" in label? Percentage=44+31+12+10=97 label Percentage 97 var data = new google.visualization.arrayToDataTable([ ['Move', 'Percentage'], ["King's pawn (e4)", 44], ["Queen's pawn (d4)", 31], ["Knight to King 3