X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=dygraph.js;h=3612c1195bac49e7a0243e576274f5547f1f23cd;hb=8114048a36bdb90f7a3ffbf583a3efff13e96a39;hp=5026649a760d67af4e4e269b521bf3f1c0d1961d;hpb=a9172eb115e99534b325621527dc70ffa9be18e2;p=dygraphs.git diff --git a/dygraph.js b/dygraph.js index 5026649..3612c11 100644 --- a/dygraph.js +++ b/dygraph.js @@ -3197,6 +3197,7 @@ Dygraph.prototype.parseDataTable_ = function(data) { if (annotations.length > 0) { this.setAnnotations(annotations, true); } + this.attributes_.reparseSeries(); }; /** @@ -3333,7 +3334,8 @@ Dygraph.mapLegacyOptions_ = function(attrs) { if (typeof(attrs[opt]) != 'undefined') { Dygraph.warn("Option " + opt + " is deprecated. Use the " + new_opt + " option for the " + axis + " axis instead. " + - "(e.g. { axes : { " + axis + " : { " + new_opt + " : ... } } }"); + "(e.g. { axes : { " + axis + " : { " + new_opt + " : ... } } } " + + "(see http://dygraphs.com/per-axis.html for more information."); set(axis, new_opt, attrs[opt]); delete my_attrs[opt]; }