From 89b2ebee5c499e94ee56e4fb940da7dc3d002401 Mon Sep 17 00:00:00 2001 From: Saairam Venkatesh <46614118+SaaiVenkat@users.noreply.github.com> Date: Tue, 5 Mar 2024 08:07:59 -0600 Subject: [PATCH 1/2] fix(boxplot): correct min, max, outlier values (#1) --- src/js/display.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/display.js b/src/js/display.js index a8eb14df2..de007a39a 100644 --- a/src/js/display.js +++ b/src/js/display.js @@ -455,7 +455,7 @@ class Display { textTerse += ' '; } // val - if (plot.plotData[plotPos][sectionKey] != null && !isOutlier) { + if (plot.plotData[plotPos][sectionKey] == null && !isOutlier) { textTerse += 'empty'; textVerbose += 'empty'; } else { From b9b25acdaa0648238408042c97cf7cc61d321b58 Mon Sep 17 00:00:00 2001 From: Saairam Venkatesh <46614118+SaaiVenkat@users.noreply.github.com> Date: Tue, 5 Mar 2024 08:07:59 -0600 Subject: [PATCH 2/2] fix(boxplot): correct issues where min, max, outlier values are displayed as NULL --- src/js/display.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/display.js b/src/js/display.js index a8eb14df2..de007a39a 100644 --- a/src/js/display.js +++ b/src/js/display.js @@ -455,7 +455,7 @@ class Display { textTerse += ' '; } // val - if (plot.plotData[plotPos][sectionKey] != null && !isOutlier) { + if (plot.plotData[plotPos][sectionKey] == null && !isOutlier) { textTerse += 'empty'; textVerbose += 'empty'; } else {