We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3788e9d commit ff86130Copy full SHA for ff86130
src/data/DataSet.ts
@@ -65,7 +65,7 @@ export default class DataSet {
65
66
getPointValue(index: number): number {
67
const temp = this.data[index].getValue();
68
- if (Number.isNaN(temp)) {
+ if (Number.isNaN(temp) || temp == null) {
69
return temp;
70
}
71
return this.verticalOffset + temp * this.scale;
0 commit comments