Re: [visualization-api] Datetime format in CSV

2015-10-15 Thread K. Anthony
Oh, got it! I'll try the query method then. Thanks so much! -- 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...@goog

Re: [visualization-api] Datetime format in CSV

2015-10-15 Thread 'Sergey Grabkovsky' via Google Visualization API
It's not about the "right" way of formatting the date. As far as I know, jQuery doesn't have any implicit support for dates. That is, it doesn't detect that something is a date and then converts it from a string. You will have to do that yourself, manually. You know that your 3rd and 4th columns wi

Re: [visualization-api] Datetime format in CSV

2015-10-15 Thread K. Anthony
Dropbox is definitely not a permanent solution but when I tried to point to a file on my computer in the same folder, I experienced a cross origin request error. I'll definitely try with the query option next (thanks for the thread link), but regarding the jQuery I'm using now, I still don't un

Re: [visualization-api] Datetime format in CSV

2015-10-15 Thread 'Sergey Grabkovsky' via Google Visualization API
Oh, you're using jQuery to parse the CSV. You'll need to be aware of which columns are dates and do the correct thing to convert it yourself. Alternatively, you could use our Query to fetch your CSV. There was a thread about it a while ago, which you can find here

Re: [visualization-api] Datetime format in CSV

2015-10-15 Thread K. Anthony
Thanks Sergey, Here's a codepen: http://codepen.io/anthkris/pen/LpzMBw -- 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+unsub

Re: [visualization-api] Datetime format in CSV

2015-10-15 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Anthony, The JSON format will encode type information and has proper support for dates, so using that is definitely preferred. I was under the impression that dates worked with CSV, but I could be wrong about that. If you could link to a test page, I could tell you for sure. On Thu, Oct 15, 20