|
Calling Sequence
|
|
StyleEdge(G, E)
StyleEdge(G, E, C, ip)
StyleEdge(G, E, stylesheets, ip)
|
|
Parameters
|
|
G
|
-
|
graph
|
E
|
-
|
a single edge or a list or set of edges of G or a subgraph of G or a list or set of subgraphs of G
|
ip
|
-
|
(optional) equation of the form inplace = true or inplace = false
|
stylesheets
|
-
|
(optional) a sequence of keyword options to specify the style or a sequence of lists of such sequences specifying styles for each of the edges.
|
|
|
|
|
Description
|
|
•
|
By default the DrawGraph command draws the edges and vertices of the graph with the same set of style options. The command StyleEdge, allows you to specify individual styles for specified edges overriding the default or a previously set style.
|
•
|
Precise control of the style can be set using stylesheet options. The stylesheet options are understood as modifiers to the default style. So, for example, if a color is not specified the default color is used.
|
|
Edge Stylesheet Options
|
|
•
|
The styles that are understood for edges are:
|
–
|
arrowpos : the position of the arrow on a directed edge, a number between 0 and 1
|
–
|
arrowsize : the length, in points, of the arrow on a directed edge
|
–
|
arrowshape : a string understood by plottools/polygonbyname or "line" specifying the shape of the arrowhead on a directed edge
|
–
|
color : color of the edge line. See ColorTools/Format. Special color values are supported
|
•
|
Special value "_contrast" sets the color to a grayscale value that contrasts with the background color of the plot.
|
•
|
Special value "_match" sets the font color to the weight color.
|
•
|
Special value "_blend" also sets the font color to average of the colors of the vertices on each end of the edge.
|
–
|
fontcolor : color of the weight label. See ColorTools/Format. Special color values are supported.
|
•
|
Special value "_contrast" sets the font to a grayscale value that contrasts with the background color of the plot.
|
•
|
Special value "_match" (the default) sets the font color to the edge color.
|
•
|
Special value "_blend" also sets the font color to average of the colors of the vertices on each end of the edge.
|
–
|
fontsize : size of the weight label in points, a positive integer
|
–
|
fontfamily : font family to use for the weight label, a string. See plot/options.
|
–
|
fontstyle : font style to use for the weight label, a string. See plot/options.
|
–
|
font : shorthand to specify the weight label font as a list either [family, size] or [family, style, size]
|
–
|
linestyle : style of the edge line, a string: solid, dot, dash, dashdot, longdash, spacedash, or spacedot. See plot/options.
|
–
|
thickness : thickness of the edge line, a non-negative value
|
|
|
|
Examples
|
|
>
|
|
| (1) |
>
|
|
>
|
|
| (2) |
If we want a version of with highlighted, but we also want to keep the current version of , we can use the option.
>
|
|
| (3) |
is unmodified.
>
|
|
| (5) |
>
|
|
>
|
|
| (6) |
>
|
|
| (7) |
>
|
|
| (8) |
>
|
|
>
|
|
|
|
Compatibility
|
|
•
|
The GraphTheory[StyleEdge] command was introduced in Maple 2020.
|
|
|
|