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 f700e57 commit 87c1215Copy full SHA for 87c1215
src/extensions/advancedcharts/chart/radar/RadarChart.tsx
@@ -67,7 +67,7 @@ const NeoRadarChart = (props: ChartProps) => {
67
const entry = {};
68
selection.values.concat([selection.index]).forEach((k) => {
69
const fieldIndex = r._fieldLookup[k];
70
- if (k !== selection.index && isNaN(r._fields[fieldIndex])) {
+ if (k !== selection.index && Number.isNaN(r._fields[fieldIndex])) {
71
valid = false;
72
}
73
entry[k] = `${r._fields[fieldIndex]}`;
0 commit comments