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 868e5df commit 48f7a47Copy full SHA for 48f7a47
x-pack/plugins/lens/public/xy_visualization/xy_config_panel.tsx
@@ -140,7 +140,7 @@ const getDataBounds = function (
140
let min = Number.MAX_VALUE;
141
let max = Number.MIN_VALUE;
142
axis.series.forEach((series) => {
143
- activeData?.[series.layer].rows.forEach((row) => {
+ activeData?.[series.layer]?.rows.forEach((row) => {
144
const value = row[series.accessor];
145
if (!Number.isNaN(value)) {
146
if (value < min) {
0 commit comments