Commit ec39841f authored by Michael Zinsmaier's avatar Michael Zinsmaier

added a check to curvedLines that tries to detect the usage of old parameters...

added a check to curvedLines that tries to detect the usage of old parameters in the main options object
parent 8c381675
...@@ -87,6 +87,7 @@ ____________________________________________________ ...@@ -87,6 +87,7 @@ ____________________________________________________
* *
* v1.0.0 API Break marked existing implementation/options as deprecated * v1.0.0 API Break marked existing implementation/options as deprecated
* v1.1.0 added the new curved line calculations based on hermite splines * v1.1.0 added the new curved line calculations based on hermite splines
* v1.1.1 added a rough parameter check to make sure the new options are used
*/ */
(function($) { (function($) {
...@@ -120,7 +121,11 @@ ____________________________________________________ ...@@ -120,7 +121,11 @@ ____________________________________________________
var nrPoints = datapoints.points.length / datapoints.pointsize; var nrPoints = datapoints.points.length / datapoints.pointsize;
var EPSILON = 0.005; var EPSILON = 0.005;
if (series.curvedLines.apply == true && series.originSeries === undefined && nrPoints > (1 + EPSILON)) { //detects missplaced legacy parameters (prior v1.x.x) in the options object
//this can happen if somebody upgrades to v1.x.x without adjusting the parameters or uses old examples
var invalidLegacyOptions = hasInvalidParameters(series.curvedLines);
if (!invalidLegacyOptions && series.curvedLines.apply == true && series.originSeries === undefined && nrPoints > (1 + EPSILON)) {
if (series.lines.fill) { if (series.lines.fill) {
var pointsTop = calculateCurvePoints(datapoints, series.curvedLines, 1); var pointsTop = calculateCurvePoints(datapoints, series.curvedLines, 1);
...@@ -452,6 +457,17 @@ ____________________________________________________ ...@@ -452,6 +457,17 @@ ____________________________________________________
return result; return result;
} }
function hasInvalidParameters(curvedLinesOptions) {
if (typeof curvedLinesOptions.fit != 'undefined' ||
typeof curvedLinesOptions.curvePointFactor != 'undefined' ||
typeof curvedLinesOptions.fitPointDist != 'undefined') {
throw new Error("CurvedLines detected illegal parameters. The CurvedLines API changed with version 1.0.0 please check the options object.");
return true;
}
return false;
}
}//end init }//end init
...@@ -460,7 +476,7 @@ ____________________________________________________ ...@@ -460,7 +476,7 @@ ____________________________________________________
init : init, init : init,
options : options, options : options,
name : 'curvedLines', name : 'curvedLines',
version : '1.1.0' version : '1.1.1'
}); });
})(jQuery); })(jQuery);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment