X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=dygraph.js;h=49ecc3eb54122c606d21b0b2f42ba8343b6f73a8;hb=c715be428d83d80c0a26fd60dc5bc36fb4c908d9;hp=7dbf29fdde56640b87f9399651c5caf455872e9b;hpb=92c5f414ef8132225bd6677d092335e8b38e5a06;p=dygraphs.git diff --git a/dygraph.js b/dygraph.js index 7dbf29f..49ecc3e 100644 --- a/dygraph.js +++ b/dygraph.js @@ -46,6 +46,7 @@ // For "production" code, this gets set to false by uglifyjs. if (typeof(DEBUG) === 'undefined') DEBUG=true; +var Dygraph = (function() { /*jshint globalstrict: true */ /*global DygraphLayout:false, DygraphCanvasRenderer:false, DygraphOptions:false, G_vmlCanvasManager:false,ActiveXObject:false */ "use strict"; @@ -334,7 +335,6 @@ Dygraph.DEFAULT_ATTRS = { axisLineWidth: 0.3, gridLineWidth: 0.3, axisLabelColor: "black", - axisLabelFont: "Arial", // TODO(danvk): is this implemented? axisLabelWidth: 50, drawYGrid: true, drawXGrid: true, @@ -3794,3 +3794,7 @@ Dygraph.addAnnotationRule = function() { console.warn("Unable to add default annotation CSS rule; display may be off."); }; + +return Dygraph; + +})();