mirror of
https://github.com/chartjs/Chart.js.git
synced 2026-03-08 09:16:51 +01:00
Fix line / non-numeric-y (#6617)
This commit is contained in:
committed by
Evert Timberg
parent
d4dc505966
commit
0de668b46f
@@ -209,8 +209,9 @@ module.exports = DatasetController.extend({
|
||||
if (rightValue < 0) {
|
||||
return yScale.getPixelForValue(sumNeg + rightValue);
|
||||
}
|
||||
return yScale.getPixelForValue(sumPos + rightValue);
|
||||
}
|
||||
return yScale.getPixelForValue(sumPos + rightValue);
|
||||
return yScale.getPixelForValue(value);
|
||||
},
|
||||
|
||||
updateBezierControlPoints: function() {
|
||||
|
||||
Reference in New Issue
Block a user