Opened 5 years ago
Last modified 3 years ago
#18751 new defect
Scatter plot doesn't handle nulls correctly.
Reported by: | Jared Jurkiewicz | Owned by: | Eugene Lazutkin |
---|---|---|---|
Priority: | undecided | Milestone: | 1.14 |
Component: | Charting | Version: | 1.10.4 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description (last modified by )
There is an issue in scatter plot that causes it to throw an error if there is a null value in the array. The issue is on line 104. It needs an additional check:
var tMixin = typeof value != "number" && value != null ? [value] : [];
That && value != null
I will try to generate a pull request for this.
Change History (4)
comment:1 Changed 5 years ago by
Description: | modified (diff) |
---|
comment:2 Changed 5 years ago by
Component: | General → Charting |
---|---|
Owner: | set to Eugene Lazutkin |
comment:3 Changed 5 years ago by
Milestone: | tbd → 1.12 |
---|
comment:4 Changed 3 years ago by
Milestone: | 1.13 → 1.14 |
---|
Note: See
TracTickets for help on using
tickets.