manager: Make graph tree more tall than wide
Helps with readability.
This commit is contained in:
parent
34d7a371b3
commit
ec5a71b936
|
@ -160,12 +160,17 @@ impl Tree {
|
||||||
petgraph::dot::Config::EdgeNoLabel,
|
petgraph::dot::Config::EdgeNoLabel,
|
||||||
petgraph::dot::Config::NodeNoLabel,
|
petgraph::dot::Config::NodeNoLabel,
|
||||||
petgraph::dot::Config::RankDir(petgraph::dot::RankDir::BT),
|
petgraph::dot::Config::RankDir(petgraph::dot::RankDir::BT),
|
||||||
|
petgraph::dot::Config::GraphContentOnly,
|
||||||
],
|
],
|
||||||
&|_g, _edge_id| "".to_string(),
|
&|_g, _edge_id| "".to_string(),
|
||||||
&|_g, (_, element)| element.to_dot_node_attributes(None),
|
&|_g, (_, element)| element.to_dot_node_attributes(None),
|
||||||
);
|
);
|
||||||
|
|
||||||
format!("{:?}", dot)
|
format!(r#"digraph {{
|
||||||
|
ranksep=1.2
|
||||||
|
{:?}
|
||||||
|
}}
|
||||||
|
"#, dot)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn to_mermaid(&self, repo_url: &str) -> String {
|
pub fn to_mermaid(&self, repo_url: &str) -> String {
|
||||||
|
|
Loading…
Reference in a new issue