From e89e73d78c1e8bb3aeb6ae3be0c9a30e919b1e50 Mon Sep 17 00:00:00 2001 From: matthewblackman Date: Thu, 4 May 2023 10:30:27 -0400 Subject: [PATCH] Adjust text readout layout in IQRNode - see https://github.com/phetsims/center-and-variability/issues/160 --- js/variability/view/IQRNode.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/variability/view/IQRNode.ts b/js/variability/view/IQRNode.ts index a597131a..e57c24c9 100644 --- a/js/variability/view/IQRNode.ts +++ b/js/variability/view/IQRNode.ts @@ -35,8 +35,8 @@ export default class IQRNode extends CAVPlotNode { if ( providedOptions.parentContext === 'accordion' ) { const textReadoutGroup = new VBox( { - y: this.centerY, - left: this.left, + x: -110, + y: this.centerY - 20, align: 'left', spacing: 10 } );