タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

graphvizに関するground256のブックマーク (2)

  • Color Names

    ColorBrewer License Apache-Style Software License for ColorBrewer software and ColorBrewer Color Schemes, Version 1.1 Copyright (c) 2002 Cynthia Brewer, Mark Harrower, and The Pennsylvania State University. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions as source cod

  • ノードの属性

    ノードの形 ノードの大きさ ノードを囲む線のスタイル 属性の複数指定 ノードの色 ノードのラベル 属性をまとめて指定 前節ではグラフ全体に対する属性をいくつか見てきましたが、 ノードについても属性を指定することで、 いろいろと表現を変えることができます。 ノードの形 1 : digraph sample { 2 : graph [size = "1.2, 2.3"]; 3 : beta [shape = box]; // ノード beta の形を指定する 4 : alpha -> beta; 5 : alpha -> gamma; 6 : beta -> delta; 7 : } とすると、 となります。 2行目、「[shape = box]」としているのがノードの形の指定です。 形として使えるのは、ellipse(デフォルト)、box、triangle、diamond、 hexagon

  • 1