/ concept-collection / benchcompress
concept-collection / benchcompress
fix scatter plot proportions
Jeremy Magland <jmagland@flatironinstitute.org> committed commit 149a1c83f2ea parent 06875e9 Browse files
1 changed file+5−5
web-ui/src/components/benchmark/charts/BenchmarkScatterPlots.tsxmodified+5−5View file
@@ -100,8 +100,8 @@ export function BenchmarkScatterPlots({
100100 <Plot
101101 data={traces}
102102 layout={{
103- width: 900,
104- height: 600,
103+ width: 1000,
104+ height: 670,
105105 grid: {
106106 rows: 2,
107107 columns: 2,
@@ -133,14 +133,14 @@ export function BenchmarkScatterPlots({
133133 },
134134 showlegend: true,
135135 legend: {
136- x: 1,
136+ x: 1.08,
137137 y: 1,
138- xanchor: "right" as const,
138+ xanchor: "left" as const,
139139 yanchor: "top" as const,
140140 },
141141 margin: {
142142 l: 60,
143- r: 20,
143+ r: 40,
144144 t: 20,
145145 b: 60,
146146 },