After loading UTC data, Dygraph axis dates are too long and won't adjust
问题 I'm feeding Dygraph some nice unix epoch data, and it's showing the axes like this: I can't get it to be more terse and dynamically adjusted, after much fiddling. Here's my code: var graph = new Dygraph( document.getElementById('plot' + formNum), fileURL, // path to CSV file { legend:'always', title: "Activity of " + station + ".BK." + fullChannel + dateString, valueParser: function(x){ return x*1000; }, ticker: Dygraph.dateTicker } Why are they so long? How can I change them and still take