作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下 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,但我无法将其插入到此上下文中而不出现错误。如何更改边框的颜色,例如变成蓝色?
最佳答案
您需要结合使用color
和fillcolor
。如果未提供 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/
我是一名优秀的程序员,十分优秀!