From 2403246749fa0e4e882c968e265ef7af5204d6a9 Mon Sep 17 00:00:00 2001 From: nabenabe0928 Date: Thu, 2 Nov 2023 06:33:34 +0100 Subject: [PATCH] Remove dashed lines for now --- 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 fc2be23ef..2d86e4649 100644 --- a/optuna_dashboard/ts/components/GraphIntermediateValues.tsx +++ b/optuna_dashboard/ts/components/GraphIntermediateValues.tsx @@ -98,7 +98,7 @@ const plotIntermediateValue = ( ? "(infeasible)" : "" }`, - ...(!isFeasible && { line: { color: "#CCCCCC", dash: "dash" } }), + ...(!isFeasible && { line: { color: "#CCCCCC" } }), } }) plotly.react(plotDomId, plotData, layout)