DotNodeAttributes contains Node specific visualization options.
| 32 | |
| 33 | // DotNodeAttributes contains Node specific visualization options. |
| 34 | type DotNodeAttributes struct { |
| 35 | Shape string // The optional shape of the node when rendered visually |
| 36 | Bold bool // If the node should be bold or not |
| 37 | Peripheries int // An optional number of borders to place around a node |
| 38 | URL string // An optional url link to add to a node |
| 39 | Formatter func(*NodeInfo) string // An optional formatter for the node's label |
| 40 | } |
| 41 | |
| 42 | // DotConfig contains attributes about how a graph should be |
| 43 | // constructed and how it should look. |
nothing calls this directly
no outgoing calls
no test coverage detected