gpt4 book ai didi

javascript - 维兹.js : Change border color of a shape

转载 作者:行者123 更新时间:2023-12-03 02:44:32 25 4
gpt4 key购买 nike

我有以下 Viz.js 的 DOT 脚本:

digraph G {
subgraph cluster_1 {
color=red;
node [style=filled, color=grey];
b0 -> b1 ;
label = "process #2";
}
start -> b0;
start [shape=Mdiamond];
}

我想更改形状b0的边框。在文档中有一个属性 color.border,但我无法将其插入到此上下文中而不出现错误。如何更改边框的颜色,例如变成蓝色?

最佳答案

您需要结合使用colorfillcolor。如果未提供 fillcolor,则填充默认为 color 值,因此边框和填充相同。

对于您的示例,这是一种方法:

digraph G {
subgraph cluster_1 {
color=red;
node [style=filled, color=grey];
b0 [color=blue, fillcolor=grey]
b0 -> b1 ;
label = "process #2";
}
start -> b0;
start [shape=Mdiamond];
}

关于javascript - 维兹.js : Change border color of a shape,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48156447/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com