Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Graphviz
digraph \{

graph [rankdir=TB]
node [shape=Mrecord,style="filled",fillcolor=lightblue]
node [fontsize=10]
ranksep=0.3
	subgraph cluster_0 \{

		style=filled;
		color=lightgrey;
		node [style=filled,color=white];
		label = "JobSchedulerJob_Chain_1";
		labeljust = "l";
		pad = 0.1;

StartProcessing[label= "\{<f0>Start&#92; Processing\}"];
Job1Job_1[label= "\{<f0>Job1<f0>Job_1\}"];
EndProcessing[label= "\{<f0>End&#92; Processing\}"];

StartProcessing -> Job1Job_1 -> EndProcessing [weight=4];
	\}

\}

...