You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ext/CatalystGraphMakieExtension/rn_graph_plot.jl
+19-33Lines changed: 19 additions & 33 deletions
Original file line number
Diff line number
Diff line change
@@ -238,44 +238,30 @@ function Catalyst.plot_complexes(rn::ReactionSystem; show_rate_labels::Bool = fa
238
238
239
239
# Get complex graph and reaction order for edgecolors and edgelabels. rxorder gives the order of reactions(rn) that would match the edge order in edges(cg).
240
240
cg, rxorder =ComplexGraphWrap(rn)
241
+
edgelabels = show_rate_labels ? [repr(rxs[i].rate) for i in rxorder] :nothing
0 commit comments