GraphTheory
StyleEdge
specify style changes to highlight certain edges of a graph
Calling Sequence
Parameters
Description
Examples
Compatibility
StyleEdge(G, E)
StyleEdge(G, E, C, ip)
StyleEdge(G, E, stylesheets, ip)
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.
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.
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
with⁡GraphTheory:
K5≔CompleteGraph⁡5
K5≔Graph 1: an undirected graph with 5 vertices and 10 edge(s)
StyleEdge⁡K5,1,2,color=Red
DrawGraph⁡K5
StyleEdge⁡K5,2,3,4,5,thickness=3
ST≔SpanningTree⁡K5
ST≔Graph 2: an undirected graph with 5 vertices and 4 edge(s)
If we want a version of K5 with ST highlighted, but we also want to keep the current version of K5, we can use the inplace option.
K5_with_ST≔StyleEdge⁡K5,ST,color=Gold,inplace=false
K5_with_ST≔Graph 3: an undirected graph with 5 vertices and 10 edge(s)
DrawGraph⁡K5_with_ST
K5 is unmodified.
M≔Matrix⁡0,2,9,4,0,1,3,0,0
M≔029401300
G≔Graph⁡M
G≔Graph 4: a directed weighted graph with 3 vertices and 5 arc(s)
StyleEdge⁡G,2,3,fontstyle=bold,fontcolor=Red,color=Green,thickness=3
DrawGraph⁡G
P≔SpecialGraphs:-PetersenGraph⁡
P≔Graph 5: an undirected graph with 10 vertices and 15 edge(s)
P1≔InducedSubgraph⁡P,1,2,3,4,5
P1≔Graph 6: an undirected graph with 5 vertices and 5 edge(s)
P2≔InducedSubgraph⁡P,6,7,8,9,10
P2≔Graph 7: an undirected graph with 5 vertices and 5 edge(s)
StyleEdge⁡P,P1,P2,color=Blue,color=Green
DrawGraph⁡P
StyleEdge⁡P,1,6,2,9,3,7,4,10,5,8,seq⁡thickness=i,i=2..10,2
The GraphTheory[StyleEdge] command was introduced in Maple 2020.
For more information on Maple 2020 changes, see Updates in Maple 2020.
See Also
DrawGraph
Edges
StyleSubgraph
StyleVertex
Download Help Document