如何隐藏 graphviz 中的节点边界?
我正在用 graphviz 绘制图表。即使我有节点 penwidth=0
,我仍然看到节点边界。如何摆脱节点边界?
我的点注释是这样的:
strict graph {
graph [bgcolor=white];
0 [fillcolor=red,
style=filled,
shape=octagon,
penwidht=0,
fontsize=10,
fixedsize=True,
width=0.5,
height=0.5,
type=3];
2 [shape=octagon,
style=filled,
fillcolor=gray,
penwidth=0];
0 -- 2 [penwidth=0.5,
color=gray];
}
I am drawing a graph with graphviz. Even though I have penwidth=0
for the nodes, I still see the node boundary. How do I get rid of the node boundary?
My annotation in dot is something like this:
strict graph {
graph [bgcolor=white];
0 [fillcolor=red,
style=filled,
shape=octagon,
penwidht=0,
fontsize=10,
fixedsize=True,
width=0.5,
height=0.5,
type=3];
2 [shape=octagon,
style=filled,
fillcolor=gray,
penwidth=0];
0 -- 2 [penwidth=0.5,
color=gray];
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这对我有用:
来源:https://renenyffenegger.ch/notes/tools/Graphviz/示例/索引
This works for me:
Source: https://renenyffenegger.ch/notes/tools/Graphviz/examples/index
问题是你有一个错字。
penwidht
应该是penwidth
The issue is you have a typo.
penwidht
should bepenwidth
setlinewidth 对我有用:
setlinewidth works for me: