izumi.fundamentals.graphs.dotml

Members list

Concise view

Type members

Classlikes

class Digraph(name: String, comment: String, strict: Boolean, graphAttr: Map[String, String], nodeAttr: Map[String, String], edgeAttr: Map[String, String], body: ArrayBuffer[String]) extends GraphVizDotML

Directed graph source code in the DOT language.

Directed graph source code in the DOT language.

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
class Graph(name: String, comment: String, strict: Boolean, graphAttr: Map[String, String], nodeAttr: Map[String, String], edgeAttr: Map[String, String], body: ArrayBuffer[String]) extends GraphVizDotML

Graph source code in the DOT language.

Graph source code in the DOT language.

Attributes

body

ArrayBuffer of lines to add to the graph body.

comment

Comment added to the first line of the source.

edgeAttr

Mapping of (attribute, value) pairs set for all edges.

graphAttr

Mapping of (attribute, value) pairs for the graph.

name

Graph name used in the source code.

nodeAttr

Mapping of (attribute, value) pairs set for all nodes.

strict

Rendering should merge multi-edges (default: false).

Graph
Supertypes
class Object
trait Matchable
class Any
abstract class GraphVizDotML(var name: String, var comment: String, var strict: Boolean, var graphAttr: Map[String, String], var nodeAttr: Map[String, String], var edgeAttr: Map[String, String], val body: ArrayBuffer[String])

Assemble, save, and render DOT source code, open result in viewer.

Assemble, save, and render DOT source code, open result in viewer.

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
class Digraph
class Graph