diff --git a/optuna_dashboard/static/components/GraphParetoFront.tsx b/optuna_dashboard/static/components/GraphParetoFront.tsx
index b2d861d0..f23dc32d 100644
--- a/optuna_dashboard/static/components/GraphParetoFront.tsx
+++ b/optuna_dashboard/static/components/GraphParetoFront.tsx
@@ -6,6 +6,7 @@ import {
FormLabel,
MenuItem,
Select,
+ Typography,
} from "@material-ui/core"
import { createStyles, makeStyles, Theme } from "@material-ui/core/styles"
@@ -13,10 +14,12 @@ const plotDomId = "graph-pareto-front"
const useStyles = makeStyles((theme: Theme) =>
createStyles({
+ title: {
+ margin: "1em 0",
+ },
formControl: {
marginBottom: theme.spacing(2),
marginRight: theme.spacing(5),
- marginTop: theme.spacing(10),
},
})
)
@@ -51,6 +54,9 @@ export const GraphParetoFront: FC<{
{study !== null && study.directions.length !== 1 ? (
+
+ Pareto Front
+
Objective X ID:
) : null}
-
+
@@ -95,9 +101,9 @@ const plotParetoFront = (
return
}
const layout: Partial = {
- title: "Pareto-front plot",
margin: {
l: 50,
+ t: 0,
r: 50,
b: 0,
},
diff --git a/optuna_dashboard/static/components/StudyDetail.tsx b/optuna_dashboard/static/components/StudyDetail.tsx
index 47541c65..f2e9b2c7 100644
--- a/optuna_dashboard/static/components/StudyDetail.tsx
+++ b/optuna_dashboard/static/components/StudyDetail.tsx
@@ -183,6 +183,13 @@ export const StudyDetail: FC = () => {
+ {studyDetail !== null && !isSingleObjectiveStudy(studyDetail) ? (
+
+
+
+
+
+ ) : null}
{studyDetail !== null && isSingleObjectiveStudy(studyDetail) ? (
@@ -236,13 +243,6 @@ export const StudyDetail: FC = () => {
) : null}
- {studyDetail !== null && !isSingleObjectiveStudy(studyDetail) ? (
-
-
-
-
-
- ) : null}