Make SVG inheritance diagrams transparent

Previously they would be emitted with a white background
This commit is contained in:
Eric Wieser 2019-12-09 23:30:17 +01:00 committed by GitHub
parent 7ec567b6d0
commit 1bfc59036a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -247,6 +247,7 @@ class InheritanceGraph:
default_graph_attrs = {
'rankdir': 'LR',
'size': '"8.0, 12.0"',
'bgcolor': 'transparent',
}
default_node_attrs = {
'shape': 'box',
@ -254,7 +255,8 @@ class InheritanceGraph:
'height': 0.25,
'fontname': '"Vera Sans, DejaVu Sans, Liberation Sans, '
'Arial, Helvetica, sans"',
'style': '"setlinewidth(0.5)"',
'style': '"setlinewidth(0.5),filled"',
'fillcolor': 'white',
}
default_edge_attrs = {
'arrowsize': 0.5,