[visualization-api] Re: Group dates on hAxis

2014-09-17 Thread Shivani Kanakhara
Also while specifying columns in data.group , is there a way to specify all column together having same aggregation? E.g var result = google.visualization.data.group( data, [{ column: 0, modifier: getMonths, type: 'string'}], [{ 'column': 1, 'aggregation'

[visualization-api] Re: Group dates on hAxis

2014-09-17 Thread Shivani Kanakhara
Hey, thanks.. I used data.group(0 Now the problem is the labels on the haxis are not sorted. I want the labels on haxis as month/year i.e 10/2012, 11/2012, ... Since the modifier function here returns string , the labels are sorted accordingly and not in order. How can i solve this? I want groupin

Re: [visualization-api] plotting small value using ColumnChart

2014-09-17 Thread Ronneil Camara
Thanks for the update! Can't wait for that version! :) -- 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 from it, send an email to google-visualization-api+unsubscr...@googlegro

[visualization-api] Re: Group dates on hAxis

2014-09-17 Thread Andrew Gallant
You can group your data using the google.visualization.data.group function. Hook up an event handler on your dropdown that groups your data appropriately (you will want to use a modifier fu

[visualization-api] Re: Updating a DataView with ChartRangeFilter

2014-09-17 Thread Andrew Gallant
To do this, you have to use an intermediary ChartWrapper in between the control and your chart. The control will drive the intermediary, and a "ready" event handler on the intermediary will check the data to see which series have values in the visible range of the data set, set the "series" op

Re: [visualization-api] plotting small value using ColumnChart

2014-09-17 Thread 'Daniel LaLiberte' via Google Visualization API
Ronneil, You might want to look at the log scale option, especially if you have more tiny values that large values. However, we should be able to show even a zero value for the column and bar chart, with a minimum bar length of 1 pixel. Look for it in a future version of the charts. On Wed, Sep

Re: [visualization-api] Unneccessary x-axis scrollbar on tables when height is set

2014-09-17 Thread 'Daniel LaLiberte' via Google Visualization API
Jason, You can specify a width as well in the options, and experiment until you find a combination that works for your data. However, that is not a satisfactory answer if your data varies each time it is viewed. I've actually been doing a lot of work on the table chart sizing, and finally got it

[visualization-api] plotting small value using ColumnChart

2014-09-17 Thread Ronneil Camara
I noticed that google chart is not showing the tiny value when the other row is in the thousands. example data time | speed 2pm | 10 3pm | 1500 When I plot it, it will only show the column for 1500. I'm aware the spread is so big. Is there still a way to show the value 10? Thanks! -- You rec

[visualization-api] Unneccessary x-axis scrollbar on tables when height is set

2014-09-17 Thread Jason Lu
Hello, when I set a height in the options on my table I end up with a horizontal scrollbar that barely moves, but is present. It seems like the presence of the vertical scrollbar causes a slight mismatch in dimensions. Is there a way to fix this?Thanks -- You received this message because you

[visualization-api] Re: Group dates on hAxis

2014-09-17 Thread Shivani Kanakhara
Also google.visulization.data.group() takes datatable object as one of the parameters. I have loaded the data fro server side using json string literal. Something like this: var data = new google.visulization.Datatable(json); can i directly pass this data variable like : in google.visulization.