X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;ds=sidebyside;f=dygraph-options.js;h=87632ff69c9783d4dbe63785ba421fa95fe4ddac;hb=600da35ccf7fda98f16ba16037c80451ebca9cf5;hp=81f766789967e468e07b546b5e4df9adcce80b14;hpb=d43d407b8605f0a2ddb4fda2af32deb6f28beed0;p=dygraphs.git diff --git a/dygraph-options.js b/dygraph-options.js index 81f7667..87632ff 100644 --- a/dygraph-options.js +++ b/dygraph-options.js @@ -193,7 +193,7 @@ DygraphOptions.prototype.reparseSeries = function() { /** * Get a global value. * - * @param {String} name the name of the option. + * @param {string} name the name of the option. */ DygraphOptions.prototype.get = function(name) { var result = this.getGlobalUser_(name); @@ -224,9 +224,9 @@ DygraphOptions.prototype.getGlobalDefault_ = function(name) { * Get a value for a specific axis. If there is no specific value for the axis, * the global value is returned. * - * @param {String} name the name of the option. - * @param {String|number} axis the axis to search. Can be the string representation - * ("x", "y", "y2") or the y-axis number (0, 1). (x-axis can't be specified by number.') + * @param {string} name the name of the option. + * @param {string|number} axis the axis to search. Can be the string representation + * ("y", "y2") or the axis number (0, 1). */ DygraphOptions.prototype.getForAxis = function(name, axis) { var axisIdx; @@ -280,8 +280,8 @@ DygraphOptions.prototype.getForAxis = function(name, axis) { * Get a value for a specific series. If there is no specific value for the series, * the value for the axis is returned (and afterwards, the global value.) * - * @param {String} name the name of the option. - * @param {String|number} series the series to search. Can be the string representation + * @param {string} name the name of the option. + * @param {string|number} series the series to search. Can be the string representation * or 0-offset series number. */ DygraphOptions.prototype.getForSeries = function(name, series) {