We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01ba336 commit 666c03bCopy full SHA for 666c03b
core/src/main/resources/org/apache/spark/ui/static/spark-dag-viz.js
@@ -298,7 +298,9 @@ function styleDagVizForStage() {
298
graphContainer().selectAll("svg g.node rect")
299
.style("fill", "none")
300
.style("stroke", VizConstants.rddColor)
301
- .style("stroke-width", "2px");
+ .style("stroke-width", "2px")
302
+ .attr("rx", "5") // round corners
303
+ .attr("ry", "5");
304
// TODO: add a legend to explain what a highlighted RDD means
305
graphContainer().selectAll("svg g.cached rect")
306
.style("stroke", VizConstants.rddCachedColor);
0 commit comments