1GVCOLOR(1) General Commands Manual GVCOLOR(1)
2
3
4
6 gvcolor - flow colors through a ranked digraph
7 ( previously known as colorize )
8
10 gvcolor [ files ]
11
13 dot file.gv | gvcolor | dot -T<format>
14
16 gvcolor is a filter that sets node colors from initial seed values.
17 Colors flow along edges from tail to head, and are averaged (as HSB
18 vectors) at nodes. The graph must already have been processed by dot.
19 Appropriate choice of initial colors yields drawings in which node col‐
20 ors help to emphasize logical relationships between nodes, even when
21 they are spread far apart in the layout.
22
23 Initial colors must be set externally, using the color attribute of a
24 node. It is often effective to assign colors to a few key source or
25 sink nodes, manually setting their colors by editing the graph file.
26 Color names are as in dot(1): symbolic names or RGB triples. It is
27 best to choose some easily‐distinguished but related colors; not neces‐
28 sarily spaced evenly around the color wheel. For example, blue_green,
29 green, and light_yellow looks better than red, green, blue.
30
31 Certain graph attributes control the gvcolor algorithm. flow=back
32 reverses the flow of colors from heads to tails. saturation=.1,.9 (or
33 any two numbers between 0 and 1) adjusts the color saturation linearly
34 from least to greatest rank. If Defcolor is set, this color value is
35 applied to any node not otherwise colored.
36
38 The following exit values are returned:
39
40 0 Successful completion.
41
42 1 If nodes of the graph do not possess a ``pos'' attribute.
43
45 It would be nice to make the program work without relying on an initial
46 pass through dot.
47
49 Stephen C. North <north@research.att.com>
50 Emden R. Gansner <erg@research.att.com>
51
53 gc(1), dot(1), gvpr(1), ccomps(1), sccmap(1), tred(1), libgraph(3)
54
55
56
57 21 March 2001 GVCOLOR(1)