[visualization-api] Re: Dates don't display properly in timeline (is this a bug?) Simple example included

2014-04-07 Thread chris . gaebler
Months are zero-based in the visualization API. Date(2014, 1, 21) is the 21st of February. -- 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

[visualization-api] Re: Visualization API : Area chart : how to fill color from chart to bottom instead of to zero ?

2014-04-07 Thread jfaba
Thank you for your answers but I try both of them and it does not work as I want. I return back to ImageCharts. Why Google deprecates this excellent API which has richer graphic possibilities? Le vendredi 4 avril 2014 17:13:52 UTC+2, asgallant a écrit : Take a look at this answer on

[visualization-api] My SelectHandler doesn't work

2014-04-07 Thread Rick van der Burg
So I've been working with google charts for a while, but I want a selecthandler when I click on a slice of my piechart. The 'ready' handler does work, but the 'select' handler doesnt. I hope you guys got an idea whats wrong with my code. google.load(visualization, 1, {packages:[corechart,

[visualization-api] Re: no method 'isEnabled' error when using explorer:{} option and MooTools is loaded

2014-04-07 Thread Daniel LaLiberte
Thanks for reporting this problem. We have a fix that will be available in the next release, which is likely to start in the next couple weeks. I don't know if there is a way to work around this in MooTools so that it doesn't add properties to arrays. On Saturday, April 5, 2014 4:21:59 PM

[visualization-api] Re: no method 'isEnabled' error when using explorer:{} option and MooTools is loaded

2014-04-07 Thread chris . gaebler
Thanks for that. I don't know of a workaround in MooTools and a quick Google didn't reveal anything. Good to know the issue will be fixed eventually. -- You received this message because you are subscribed to the Google Groups Google Visualization API group. To unsubscribe from this group and

[visualization-api] Re: 2 y-axis and tick marks

2014-04-07 Thread asgallant
Post a code example demonstrating the problem so I can see what might need to be fixed. On Saturday, April 5, 2014 5:19:57 PM UTC-4, John Smith wrote: I'm having trouble with this one for sure. column 0 is date in text format column1 2 are floating point values Getting 2 different scales

[visualization-api] Re: Dates don't display properly in timeline (is this a bug?) Simple example included

2014-04-07 Thread asgallant
To clarify: months are zero-indexed in *javascript*, not specifically the Visualization API. On Monday, April 7, 2014 3:42:50 AM UTC-4, chris@gmail.com wrote: Months are zero-based in the visualization API. Date(2014, 1, 21) is the 21st of February. -- You received this message

[visualization-api] Re: Visualization API : Area chart : how to fill color from chart to bottom instead of to zero ?

2014-04-07 Thread asgallant
If you could explain what difference between the examples and what you would like are, then maybe I can help figure out how to make this happen for you. Perhaps you could include an ImageChart example of what you want? On Monday, April 7, 2014 5:09:48 AM UTC-4, jf...@hotmail.fr wrote: Thank

[visualization-api] Re: My SelectHandler doesn't work

2014-04-07 Thread asgallant
You should create the select event handler for your PieChart, not the Dashboard. This: google.visualization.events.addListener(chart, 'select', selectHandler); should be this: google.visualization.events.addListener(piechart, 'select', selectHandler); On Monday, April 7, 2014 7:35:00 AM

[visualization-api] Stacked Column Chart: data

2014-04-07 Thread Stefano Bagnatica
Hi, I made a Column Chart with three stacked data. I also added the data value on each block, with a DataView with annotation columns: var view = new google.visualization.DataView(data); view.setColumns([0, 1, { calc: 'stringify', sourceColumn: 1,

[visualization-api] Geochart: Problem in iOS

2014-04-07 Thread Carlos Moreira
Hi guys Not sure this is an API problem, or a javascript problem. I've got this code that works very well everywhere except on iOS devices: http://jsfiddle.net/cmoreira/acS65/ I have objects with the map data and then I build the map according to that data. I've modified the code a bit for

[visualization-api] Re: Dates don't display properly in timeline (is this a bug?) Simple example included

2014-04-07 Thread MS
so, will this problem be fixed soon? MS On Monday, April 7, 2014 10:43:04 AM UTC-5, asgallant wrote: To clarify: months are zero-indexed in *javascript*, not specifically the Visualization API. On Monday, April 7, 2014 3:42:50 AM UTC-4, chris@gmail.com wrote: Months are zero-based in

[visualization-api] Re: Dates don't display properly in timeline (is this a bug?) Simple example included

2014-04-07 Thread MS
or is there anything I need to change so the dates display properly? MS On Monday, April 7, 2014 12:01:55 PM UTC-5, MS wrote: so, will this problem be fixed soon? MS On Monday, April 7, 2014 10:43:04 AM UTC-5, asgallant wrote: To clarify: months are zero-indexed in *javascript*, not

[visualization-api] Re: Geochart: Problem in iOS

2014-04-07 Thread asgallant
Likely this is an issue with touch events. As I understand it, some mobile browsers send click events whenever a comparable touch event fires, but Safari on iOS doesn't. You need to emulate mouse events from touch events in iOS. There is a post over on StackOverflow that should get you

[visualization-api] Re: Dates don't display properly in timeline (is this a bug?) Simple example included

2014-04-07 Thread asgallant
This is not something that will be fixed - it was a deliberate design decision on the part of the people who designed javascript, and there is practically zero chance that it will ever be changed. You need to adjust the way you input data to account for this (it should be as simple as

[visualization-api] groupWidth option and DateRangeFilter

2014-04-07 Thread Nick
Hi everybody, On my combo chart at the moment I set the bar.groupWidth option to 90% to eliminate the space between columns and it looks great as long as there is more than 12 columns. I am using a DateRangeFilter to filter through the data and if you show less than 10 columns it looks awful

[visualization-api] Re: Dates don't display properly in timeline (is this a bug?) Simple example included

2014-04-07 Thread MS
I am new to programming. Wondering if it would it be possible to let me know what the final code will look like after it subtracts one from the month based on your recommendation? Thank you, Manoj On Monday, April 7, 2014 12:57:15 PM UTC-5, asgallant wrote: This is not something that will be

[visualization-api] Re: groupWidth option and DateRangeFilter

2014-04-07 Thread asgallant
Use a statechange event handler on the date filter to check how many rows of data are in the filtered set, and change the bar.groupWidth option if the number is below 12: google.visualization.events.addListener(dateFilter, 'statechange', function () { var rowCount =

[visualization-api] Re: Dates don't display properly in timeline (is this a bug?) Simple example included

2014-04-07 Thread asgallant
Dates are entered in the format: new Date(year, month, day, hours, minutes, seconds, milliseconds) where day, hours, minutes, seconds, milliseconds are optional (default for day is 1, the others default to 0), so f you want to enter the date April 7, 2014, it would be like this: new

[visualization-api] Re: Convert Line Chart to Pie Chart !?

2014-04-07 Thread cyb
Hi, i want not add new columns.. is there no way that i can take the 'date' column from the DataTable and parse it to a column with type =date ? i thought i can overwrite values in a DataTable? data = new google.visualization.arrayToDataTable([ ['date','New

[visualization-api] Re: Convert CSV or JSON File to Google Charts!

2014-04-07 Thread cyb
Hi, i use spring an have created the following service. @Controller @RequestMapping(REST) public class LoadDataSource { @Autowired private HttpServletRequest request; @RequestMapping(value=/DataSource/{Id},method=RequestMethod.GET, produces=MediaType.APPLICATION_JSON_VALUE) public

[visualization-api] Re: Convert CSV or JSON File to Google Charts!

2014-04-07 Thread cyb
Hi, ok i have found my mistake.. i must use the JsonRenderer JsonRenderer.renderDataTable(data, true, true, true) and then i can use on the Client side var data= new google.visualization.DataTable(json). But how can i parse a csv on the server side to a DataTable ? i have the following csv:

[visualization-api] Interactive Tool

2014-04-07 Thread Phuoc Do
Hello, My team at vida.io has released a GUI tool for Google Visualization. We want to make it easy for non-programmers to create Google Visualization. We'd be interested in getting feedback on how we can make the tool easier to use, what template to support.

[visualization-api] Remove unneeded months from Calendar Chart

2014-04-07 Thread Alex Topiler
Is there any way to remove unused months from the calendar chart? Or are you stuck having to display the entire year no matter what? -- You received this message because you are subscribed to the Google Groups Google Visualization API group. To unsubscribe from this group and stop receiving

[visualization-api] How to transform google chart script to xslt?

2014-04-07 Thread tenkepadu
Please help me, im beginner in xsl and i want to convert/transfer the google chart script into xsl? I have already converted google chart into xsl but (e.g line chart, column chart) to produce html file but the script that i want is too complicated for me to convert. Help me please. Thank you.

Re: [visualization-api] querying for specific date range in google docs spreadsheets

2014-04-07 Thread Timo Kataja
Any updates on this? I just spent hours trying to get my previous query to work, and now I don't know if the problem is with me or with faulty handling of dates in a query :/ On Monday, March 31, 2014 10:06:38 PM UTC+3, Sergey wrote: Yes, this is now a known issue and the Docs team is looking