Graphviz - Python : 使用 Graphviz 将节点形状制作成双椭圆
Graphviz - Python : Making node shape into double ellipse with Graphviz
我在我的 python 脚本中使用 Graphviz 0.5.2 ,这与此类似
from graphviz import Digraph
dot = Digraph()
dot.node('A', 'King Arthur', shape='ellipse')
dot.node('B', 'Sir Bedevere the Wise', shape='ellipse')
dot.node('L', 'Sir Lancelot the Brave', shape='ellipse')
dot.edges(['AB', 'AL'])
dot.edge('B', 'L', constraint='false')
dot.render('test-output/round-table.gv', view=True)
它呈现这个:
默认情况下节点的形状是ellipse/oval但我想把它做成双椭圆,有双圆但不是椭圆。
我已经试过了peripheries = 2
但是我不确定把它放在哪里是对的。
将外围应用于节点属性,例如
graph ethane {
node[ peripheries=5];
C_0 -- H_0 [type=s];
C_0 -- H_1 [type=s];
C_0 -- H_2 [type=s];
C_0 -- C_1 [type=s];
C_1 -- H_3 [type=s];
C_1 -- H_4 [type=s];
C_1 -- H_5 [type=s];
}
在python中如果我理解示例
dot.node_attr['peripheries']='5' #whole graph
n.attr['peripheries']='5' #any single node n
https://github.com/pygraphviz/pygraphviz/blob/master/examples/star.py
我在我的 python 脚本中使用 Graphviz 0.5.2 ,这与此类似
from graphviz import Digraph
dot = Digraph()
dot.node('A', 'King Arthur', shape='ellipse')
dot.node('B', 'Sir Bedevere the Wise', shape='ellipse')
dot.node('L', 'Sir Lancelot the Brave', shape='ellipse')
dot.edges(['AB', 'AL'])
dot.edge('B', 'L', constraint='false')
dot.render('test-output/round-table.gv', view=True)
它呈现这个:
默认情况下节点的形状是ellipse/oval但我想把它做成双椭圆,有双圆但不是椭圆。
我已经试过了peripheries = 2
但是我不确定把它放在哪里是对的。
将外围应用于节点属性,例如
graph ethane {
node[ peripheries=5];
C_0 -- H_0 [type=s];
C_0 -- H_1 [type=s];
C_0 -- H_2 [type=s];
C_0 -- C_1 [type=s];
C_1 -- H_3 [type=s];
C_1 -- H_4 [type=s];
C_1 -- H_5 [type=s];
}
在python中如果我理解示例
dot.node_attr['peripheries']='5' #whole graph
n.attr['peripheries']='5' #any single node n
https://github.com/pygraphviz/pygraphviz/blob/master/examples/star.py