]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Fix for #1373 1374/head
authorFabian Strachanski <mail@fastr.de>
Thu, 13 Aug 2015 08:50:56 +0000 (10:50 +0200)
committerFabian Strachanski <mail@fastr.de>
Thu, 13 Aug 2015 08:50:56 +0000 (10:50 +0200)
src/scales/scale.linear.js

index c9827e02ef094902a8f6b66b7ae9bd2ff06f27cd..642ea0c496956c9c31bcf55a36682064576874d0 100644 (file)
                },
                // Get the correct value. If the value type is object get the x or y based on whether we are horizontal or not
                getRightValue: function(rawValue) {
-                       return typeof rawValue === "object" ? (this.isHorizontal() ? rawValue.x : rawValue.y) : rawValue;
+                       return typeof (rawValue === "object" && rawValue !== null) ? (this.isHorizontal() ? rawValue.x : rawValue.y) : rawValue;
                },
                getPixelForValue: function(value) {
                        // This must be called after fit has been run so that