class documentation
class PlotlyGraphDrawer(AbstractGraphDrawer):
Graph drawer that uses a pyplot.Axes as context
| Method | __init__ |
Constructs the graph drawer and associates it with the plotly Figure |
| Method | draw |
Abstract method, must be implemented in derived classes. |
| Instance Variable | edge |
Undocumented |
| Instance Variable | fig |
Undocumented |
| Instance Variable | vertex |
Undocumented |
| Class Variable | _shape |
Undocumented |
Inherited from AbstractGraphDrawer:
| Static Method | ensure |
Helper method that ensures that layout is an instance of Layout. If it is not, the method will try to convert it to a Layout according to the following rules: |
| Static Method | _determine |
Returns the order in which the edge of the given graph have to be drawn, assuming that the relevant keyword arguments (edge_order and edge_order_by) are given in kwds as a dictionary. If neither edge_order... |
| Static Method | _determine |
Returns the order in which the vertices of the given graph have to be drawn, assuming that the relevant keyword arguments (vertex_order and vertex_order_by) are given in kwds as a dictionary. If neither ... |
def __init__(self, fig, vertex_drawer_factory=PlotlyVerticesDrawer, edge_drawer_factory=PlotlyEdgeDrawer):
¶
Constructs the graph drawer and associates it with the plotly Figure
| Parameters | |
| fig | the plotly.graph_objects.Figure to draw into. |
| vertex | Undocumented |
| edge | Undocumented |