From 26329560928fcad588c4eb337c2c6eaad430c157 Mon Sep 17 00:00:00 2001 From: nabenabe0928 Date: Tue, 31 Oct 2023 08:53:44 +0100 Subject: [PATCH] [feat] Make the infeasible plots dashed --- optuna_dashboard/ts/components/GraphIntermediateValues.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/optuna_dashboard/ts/components/GraphIntermediateValues.tsx b/optuna_dashboard/ts/components/GraphIntermediateValues.tsx index 13412b87..a4099c57 100644 --- a/optuna_dashboard/ts/components/GraphIntermediateValues.tsx +++ b/optuna_dashboard/ts/components/GraphIntermediateValues.tsx @@ -98,7 +98,7 @@ const plotIntermediateValue = ( mode: "lines+markers", type: "scatter", name, - ...(isFeasible && { line: { color: "#CCCCCC" } }), + ...(isFeasible && { line: { color: "#CCCCCC", dash: "dash" } }), } }) plotly.react(plotDomId, plotData, layout)