[feat] Make the infeasible plots dashed

This commit is contained in:
nabenabe0928
2023-10-31 08:53:44 +01:00
parent 0c644462ce
commit 2632956092
@@ -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)