Class "AgTextLabel": Represents a graphviz text label
This class is used to represent the textlabel object in C from the Graphviz library
Objects can be created by calls of the form new("AgTextLabel", ...)
.
labelText
:Object of class "character"
The
actual label text
labelLoc
:Object of class "xyPoint"
The
location of the label
labelJust
:Object of class "character"
The
justification of the label
labelWidth
:Object of class "integer"
The width
of the label
labelColor
:Object of class "character"
The
color to print the label
labelFontsize
:Object of class "numeric"
The
font size for the label
Retrieves the labelText slot
Retrieves the labelLoc slot
Retrieves the labelJust slot
Retrieves the labelWidth slot
Retrieves the labelColor slot
Retrieves the labelFontsize slot
Jeff Gentry
V <- letters[1:10] M <- 1:4 g1 <- randomGraph(V, M, .2) ## Make the labels be the edge weights. This code is from the vignette eAttrs <- list() ew <- edgeWeights(g1) lw <- unlist(unlist(ew)) toRemove <- removedEdges(g1) lw <- lw[-toRemove] names(lw) <- edgeNames(g1) eAttrs$label <- lw z <- agopen(g1,"foo", edgeAttrs=eAttrs) x <- AgEdge(z) ## list of AgEdge objects x[[1]] ## AgEdge a <- txtLabel(x[[1]]) a ## txtLabel object labelText(a) labelLoc(a) labelJust(a) labelWidth(a) labelColor(a) labelFontsize(a)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.