This repository has been archived by the owner on Jul 3, 2023. It is now read-only.
Exposes passing kwargs to graphviz object #125
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This should be a backwards compatible API change for everything.
To be able to control, for instance the ratio, of the produced image,
it's not a render time argument. Instead, it's a property of the graph.
To be able to manipulate it, we need to wire through passing in attributes.
e.g. https://graphviz.org/doc/info/attrs.html shows what could be set.
These attributes are either graph, node, or edge attributes.
The kwargs I'm specifically trying to expose are:
The above was taken from https://graphviz.readthedocs.io/en/stable/api.html?highlight=ratio#digraph.
Note, this will enable anything else to be also passed to the graph, which I
think is a useful thing too. Since that will allow someone who knows graphviz
to really customize it I think.
Changes
graphviz_kwargs
parameter and wires it through to all the displays.Testing
graphviz_kwargs
.Notes
Checklist
Testing checklist
Python - local testing