It looks like your dates are not being processed correctly. I see in your code that you are converting dates with this:
date = new Date(data[i][j]) Where your data values look like this: "2013-3-1" That is very likely the source of your problem since date parsing by JavaScript is very browser and platform specific. You should instead specify dates with separate values, e.g. new Date(2013, 2, 1). Note that months are indexed starting with 0. On Fri, Dec 22, 2017 at 12:18 PM, Sirius <[email protected]> wrote: > I am currently facing the same problem. > > On Tuesday, December 19, 2017 at 11:17:34 PM UTC, John Kappa wrote: >> >> This top chart here renders fine on desktop but in the latest IOS iPhone >> 6s, 8 & iPad Pro it doesn't - see pics below >> I've also tried it across multiple browsers; Firefox, Chrome, Safari with >> the same result. >> >> *See chart here* >> http://www.paragonfunds.com.au/performance-dynamic/ >> >> >> >> >> <https://lh3.googleusercontent.com/-dKP6tFr-0ZY/WjmdlczZGRI/AAAAAAAAHsQ/QLbrTgVf1dAYz_HmgDvAzQxQwii7dlEFQCLcBGAs/s1600/IMG_0140.PNG> >> >> >> >> -- > 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 [email protected]. > To post to this group, send email to google-visualization-api@ > googlegroups.com. > Visit this group at https://groups.google.com/ > group/google-visualization-api. > To view this discussion on the web visit https://groups.google.com/d/ > msgid/google-visualization-api/bb8e747b-9fd0-4cee-a01c- > e3e40ae0dbc9%40googlegroups.com > <https://groups.google.com/d/msgid/google-visualization-api/bb8e747b-9fd0-4cee-a01c-e3e40ae0dbc9%40googlegroups.com?utm_medium=email&utm_source=footer> > . > > For more options, visit https://groups.google.com/d/optout. > -- Daniel LaLiberte <https://plus.google.com/100631381223468223275?prsrc=2> [email protected] <[email protected]> 5CC, Cambridge MA -- 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 [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-visualization-api. To view this discussion on the web visit https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJMwWDGF0ezNPSqTA%3D7ToSa%2B-ACcmPktECVQdyYt%2B2o2qw%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
