anytree
anytree copied to clipboard
Make lines stright, not curve.
Is anyway to make the lines straight?
In Graphviz library is documented with the function splines=line
or false
.
It is only valid on Graphs:
I have only see this example, from the following page:
n = graphviz.Digraph(name='splines', engine='neato', graph_attr={'splines': 'true'}, node_attr={'shape': 'point'})
But i cannot find the function "graph_attr" in DotExporter()
. Therefore, i have to assume right now it is not possible?
Thank you 😄.
I guess this question belongs rather to the graphviz page, doesn't it?
The DotExporter just generates the output file and provides hook-ups to customize.