GraphvizExtensions
Namespace: QuickGraph.Graphviz
Helper extensions to render graphs to graphviz
Static members
Static member | Description |
ToGraphviz(graph)
Signature: graph:IEdgeListGraph<'TVertex,'TEdge> -> string
Type parameters: 'TVertex, 'TEdge |
Renders a graph to the Graphviz DOT format. |
ToGraphviz(graph, initialization)
Signature: (graph:IEdgeListGraph<'TVertex,'TEdge> * initialization:Action<GraphvizAlgorithm<'TVertex,'TEdge>>) -> string
Type parameters: 'TVertex, 'TEdge |
Renders a graph to the Graphviz DOT format. |
ToSvg(graph)
Signature: graph:IEdgeListGraph<'TVertex,'TEdge> -> string
Type parameters: 'TVertex, 'TEdge |
Performs a layout .dot in an SVG (Scalable Vector Graphics) file by calling Agl through the http://rise4fun.com/ REST services. |
ToSvg(graph, initialization)
Signature: (graph:IEdgeListGraph<'TVertex,'TEdge> * initialization:Action<GraphvizAlgorithm<'TVertex,'TEdge>>) -> string
Type parameters: 'TVertex, 'TEdge |
Performs a layout .dot in an SVG (Scalable Vector Graphics) file by calling Agl through the http://rise4fun.com/ REST services. |
ToSvg(dot)
Signature: dot:string -> string
|
Performs a layout .dot in an SVG (Scalable Vector Graphics) file by calling Agl through the http://rise4fun.com/ REST services. |