English 中文(简体)
如何将同一风格划给一组边缘?
原标题:How to assign the same style to a group of edges?

我看一看一幅我想要布局和视像的图表。 该图有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 

“由此产生的图表”</p

如@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相同。





相关问题
Allow user to change the default web part styles

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 ...

using jqgrid style for usual Table in asp.net mvc

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?

热门标签