From 4e7a9805ec2433b52642907eeabdae672704771c Mon Sep 17 00:00:00 2001 From: Mojtaba Samimi Date: Thu, 4 Jan 2024 08:56:41 -0500 Subject: [PATCH] fix upperfence description --- src/traces/box/attributes.js | 2 +- test/plot-schema.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/traces/box/attributes.js b/src/traces/box/attributes.js index f50040aae49..cda4fc672c5 100644 --- a/src/traces/box/attributes.js +++ b/src/traces/box/attributes.js @@ -129,7 +129,7 @@ module.exports = { 'There should be as many items as the number of boxes desired.', 'This attribute has effect only under the q1/median/q3 signature.', 'If `upperfence` is not provided but a sample (in `y` or `x`) is set,', - 'we compute the lower as the last sample point above 1.5 times the IQR.' + 'we compute the upper as the last sample point above 1.5 times the IQR.' ].join(' ') }, diff --git a/test/plot-schema.json b/test/plot-schema.json index 9ad961d8701..517583160d5 100644 --- a/test/plot-schema.json +++ b/test/plot-schema.json @@ -17275,7 +17275,7 @@ "role": "object" }, "upperfence": { - "description": "Sets the upper fence values. There should be as many items as the number of boxes desired. This attribute has effect only under the q1/median/q3 signature. If `upperfence` is not provided but a sample (in `y` or `x`) is set, we compute the lower as the last sample point above 1.5 times the IQR.", + "description": "Sets the upper fence values. There should be as many items as the number of boxes desired. This attribute has effect only under the q1/median/q3 signature. If `upperfence` is not provided but a sample (in `y` or `x`) is set, we compute the upper as the last sample point above 1.5 times the IQR.", "editType": "calc", "valType": "data_array" },