Skip to content

Commit 65691fa

Browse files
authored
DB-1953 remove null check, because null values are a feature in plotly
1 parent 8823df1 commit 65691fa

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

packages/shared/charts/src/hooks/usePlotChartDataSeries.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -206,10 +206,6 @@ function extractDataPoints(
206206
const x = xValue.get(item);
207207
const y = yValue.get(item);
208208

209-
if (!x.value || !y.value) {
210-
return null;
211-
}
212-
213209
xData.push(x.value instanceof Big ? Number(x.value.toString()) : x.value);
214210
yData.push(y.value instanceof Big ? Number(y.value.toString()) : y.value);
215211

0 commit comments

Comments
 (0)