We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51ae1cb commit 658d0f9Copy full SHA for 658d0f9
codegraph/vizualyzer.py
@@ -75,13 +75,17 @@ def draw_graph(modules_entities: Dict) -> None:
75
font_family="Arial",
76
font_size=10,
77
)
78
+
79
+ arrow_size = 15
80
81
nx.draw_networkx_edges(
82
G,
83
pos,
84
edgelist=module_edges_all,
85
edge_color="#009c2c",
86
width=2,
- arrows=False,
87
+ arrows=True,
88
+ arrowsize=arrow_size,
89
style="dashed",
90
node_size=50,
91
@@ -91,9 +95,10 @@ def draw_graph(modules_entities: Dict) -> None:
95
edgelist=sub_edges_all,
92
96
edge_color="r",
93
97
94
98
99
100
101
- for p in pos: # raise text positions
102
+ for p in pos:
103
pos[p][1] += 0.07
104
plt.show()
0 commit comments