web-ui plots
2 changed files+5−3
web-ui/src/components/benchmark/charts/BenchmarkCharts.tsxmodified+3−3View file
@@ -48,7 +48,7 @@ export function BenchmarkCharts({ chartData }: BenchmarkChartsProps) {
4848 ]}
4949 layout={{
5050 width: 800,
51- height: 400,
51+ // important not to specify height to allow it to be based on content
5252 margin: { t: 5, r: 30, l: 250, b: 30 },
5353 xaxis: { title: "Ratio" },
5454 dragmode: false,
@@ -71,7 +71,7 @@ export function BenchmarkCharts({ chartData }: BenchmarkChartsProps) {
7171 ]}
7272 layout={{
7373 width: 800,
74- height: 400,
74+ // important not to specify height to allow it to be based on content
7575 margin: { t: 5, r: 30, l: 250, b: 30 },
7676 xaxis: { title: "MB/s" },
7777 }}
@@ -93,7 +93,7 @@ export function BenchmarkCharts({ chartData }: BenchmarkChartsProps) {
9393 ]}
9494 layout={{
9595 width: 800,
96- height: 400,
96+ // important not to specify height to allow it to be based on content
9797 margin: { t: 5, r: 30, l: 250, b: 30 },
9898 xaxis: { title: "MB/s" },
9999 }}
web-ui/src/pages/Home.tsxmodified+2−0View file
@@ -79,6 +79,8 @@ export default function Home({ benchmarkData }: HomeProps) {
7979 algorithm?.name || null,
8080 );
8181
82+ console.log("chartData", chartData);
83+
8284 // Set up tag filtering for datasets
8385 const {
8486 selectedTags: datasetTags,