diff --git a/optuna_dashboard/ts/components/AppDrawer.tsx b/optuna_dashboard/ts/components/AppDrawer.tsx index 99ee0b43..2ce2bac7 100644 --- a/optuna_dashboard/ts/components/AppDrawer.tsx +++ b/optuna_dashboard/ts/components/AppDrawer.tsx @@ -384,8 +384,8 @@ export const AppDrawer: FC<{ left: "50%", transform: "translate(-50%, -50%)", overflow: "scroll", - width: "500px", - height: "400px", + width: "600px", + height: "600px", bgcolor: "background.paper", }} > diff --git a/optuna_dashboard/ts/components/Settings.tsx b/optuna_dashboard/ts/components/Settings.tsx index 3a6a14d3..1cb6e852 100644 --- a/optuna_dashboard/ts/components/Settings.tsx +++ b/optuna_dashboard/ts/components/Settings.tsx @@ -2,6 +2,7 @@ import ClearIcon from "@mui/icons-material/Clear" import { Box, IconButton, + Link, MenuItem, Select, SelectChangeEvent, @@ -68,31 +69,29 @@ export const Settings = ({ handleClose }: SettingsProps) => { {theme.palette.mode === "dark" ? ( <> - - Dark Mode - - + Dark Mode Only the "Default" color scale is supported in dark mode + ) : ( - + <> Light Mode - + )} @@ -123,7 +122,14 @@ export const Settings = ({ handleClose }: SettingsProps) => { variant="h5" sx={{ fontWeight: theme.typography.fontWeightBold }} > - Use Plotlypy + Use Plotly Python library + + + {"If enabled, the plots will be rendered using the "} + + optuna.visualization module + + .