I have a few graphs that render perfectly in Chrome and Firefox, but not in Safari (5.1.7) The grid, axis, tick labels and legend all render, but the points are not being displayed in the graph. It is a time series graph. I commented out the " mode: 'time' " to see if that had any effect, but it did not. Any thoughts?
Hope this will help because I had the same exact problem and couldn't figure out for the life of me what I was doing wrong. When converting the start and end points on my xaxis I was using the format 'new Date("yyyy-mm-dd").getTime()'. After some head-scratching and debugging, I found out that in Safari, the returned value from this function is NaN. Change the date format to 'new Date(yyyy, mm, dd, 0, 0, 0, 0).getTime()' and it works! Just remember that in this case, mm starts at 0 (so, January = 0, February = 1,...)-Zac