我看一看一幅我想要布局和视像的图表。 该图有122处,123处点。 边缘区有4种不同类型,我希望可以视力区分。 然而,我尚未决定这样做的最佳方式,因此,我只想与两院一道做事。
不幸的是,我看不出像“阶级”或“风格”等东西。 我只能为每个边缘(重复位置)单独设定视觉特征。 也许我会错过一些东西? 在四大不同群体中,如果是这样的话,那么这些团体的风格,而不是每个集团的面貌?
我看一看一幅我想要布局和视像的图表。 该图有122处,123处点。 边缘区有4种不同类型,我希望可以视力区分。 然而,我尚未决定这样做的最佳方式,因此,我只想与两院一道做事。
不幸的是,我看不出像“阶级”或“风格”等东西。 我只能为每个边缘(重复位置)单独设定视觉特征。 也许我会错过一些东西? 在四大不同群体中,如果是这样的话,那么这些团体的风格,而不是每个集团的面貌?
http://www.ohchr.org。
同样:
digraph G {
node [style=filled,color="#5D8AA8", fillcolor="#5D8AA8"];
subgraph c1 {
edge [color="#004225", arrowsize="0.6", penwidth="1"];
"node 1" -> "node 3";
"node 5" -> "node 7";
"node 1" -> "node 2";
label = "";
}
subgraph c2 {
edge [color="#FBEC5D", arrowsize="1.2", penwidth="3"];
"node 2" -> "node 4";
"node 4" -> "node 6";
"node 3" -> "node 5";
"node 6" -> "node 8";
label = "";
}
begin -> "node 1";
start -> "node 2";
"node 1" -> "node 4"
"node 2" -> "node 6";
start [shape=diamond];}
因此,如果你将上述法典放在案号上/延伸号上;然后将其放在图表中,请参看 3不同种类的对口、外表。
一种情况是,只是缺省(color=black、厚度=1等)-即,这些垫子没有被分配到分位。
其他两类对口(一个软薄、黑暗、绿化、一个厚、光明的组群)则按分配给两个分组中的一个组别的方式进行。
<>m>Subgraph通常用于直观highlight a node group (即,将特定毗连的节点与图表中其他节点区分开来);然而,没有要求(如你从我的身边看到的那样)你选择通过派到某一分局进行风格的对面,属于一个毗连的节点,可以指定你希望派到某个次位的对面。
对我来说,按组别分类的排泄物与确定一个类别和将其分配给以超文本标记收集四级的超文本做法相似。
@doug 回答是正确的(用图表来描述类似物体组),但我认为我的例子较好:
digraph G {
compound=true;
subgraph columns {
c0r0 -> c0r1;
c0r1 -> c0r2;
c1r0 -> c1r1;
c1r1 -> c1r2;
c2r0 -> c2r1;
c2r1 -> c2r2;
}
subgraph rows {
edge [color=red, constraint=false];
c0r0 -> c1r0;
c1r0 -> c2r0;
c0r1 -> c1r1;
c1r1 -> c2r1;
c0r2 -> c1r2;
c1r2 -> c2r2;
}
}
www.un.org/Depts/DGACM/index_spanish.htm
cat square-digraph.dot | dot -Tsvg -o square-digraph.svg
如@bousch分图所示,不需要。
“凡在“对[栏目]......etc]”的对冲式标语下定义的对面都将使用这种风格
digraph G {
compound=true;
c0r0 -> c0r1;
c0r1 -> c0r2;
c1r0 -> c1r1;
c1r1 -> c1r2;
c2r0 -> c2r1;
c2r1 -> c2r2;
edge [color=red, constraint=false];
c0r0 -> c1r0;
c1r0 -> c2r0;
c0r1 -> c1r1;
c1r1 -> c2r1;
c0r2 -> c1r2;
c1r2 -> c2r2;
}
将与@bukzor相同。
I am starting a new project from the ground up and want it to be clean / have good coding standards. In what order do the seasoned developers on here like to lay things out within a class? A : 1) ...
What are some of the best practices for clean code, naming conventions and documentation for PHP? I see users/people saying this is a bad practice, Example: // Create an array to hold x values $...
我与分析家和统计家小组合作,研究哪些是中型的R码。 他们重新唤醒人们,但是他们自己没有受过训练或体验过方案。 (我) ......
Scott Meyer s argument that non-member functions increase encapsulation and allow for more elegant design (designwise) seems very valid to me. See here: Article Yet I have problems with this. (And ...
I have a web part which uses many SharePoint controls like menu, SPGrid, tool bar etc. I want the user to be able to change the style by specifying an external CSS file. Can somebody tell me how I ...
I d prefer using Table and td instead of JqGrid but i like JqGrid styles. has anyone used jqgrid style for usual Grid of asp.net MVC(i mean Table and td) before?
c# 3.0 offers us getters and setters with compiler generated backing fields - this is really great, but there are plenty of times that you still need to use a backing field. In a perfect world (...
<div id="example-value"> or <div id="example_value">? This site and Twitter use the first style. Facebook and Vimeo - the second. Which one do you use and why?