StyleEdge - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


GraphTheory

  

StyleEdge

  

specify style changes to highlight certain edges of a graph

 

Calling Sequence

Parameters

Description

Examples

Compatibility

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

withGraphTheory:

K5CompleteGraph5

K5Graph 1: an undirected graph with 5 vertices and 10 edge(s)

(1)

StyleEdgeK5,1,2,color=Red

DrawGraphK5

StyleEdgeK5,2,3,4,5,thickness=3

DrawGraphK5

STSpanningTreeK5

STGraph 2: an undirected graph with 5 vertices and 4 edge(s)

(2)

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_STStyleEdgeK5,ST,color=Gold,inplace=false

K5_with_STGraph 3: an undirected graph with 5 vertices and 10 edge(s)

(3)

DrawGraphK5_with_ST

K5 is unmodified.

DrawGraphK5

MMatrix0,2,9,4,0,1,3,0,0

M029401300

(4)

GGraphM

GGraph 4: a directed weighted graph with 3 vertices and 5 arc(s)

(5)

StyleEdgeG,2,3,fontstyle=bold,fontcolor=Red,color=Green,thickness=3

DrawGraphG

PSpecialGraphs:-PetersenGraph

PGraph 5: an undirected graph with 10 vertices and 15 edge(s)

(6)

P1InducedSubgraphP,1,2,3,4,5

P1Graph 6: an undirected graph with 5 vertices and 5 edge(s)

(7)

P2InducedSubgraphP,6,7,8,9,10

P2Graph 7: an undirected graph with 5 vertices and 5 edge(s)

(8)

StyleEdgeP,P1,P2,color=Blue,color=Green

DrawGraphP

StyleEdgeP,1,6,2,9,3,7,4,10,5,8,seqthickness=i,i=2..10,2

DrawGraphP

Compatibility

• 

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