nwidth-node.dot 548 B

1234567891011121314151617181920
  1. /* node width is a double number, default 0.75, minimum 0.01
  2. * if fixedsize=true this will be the node width in inches
  3. * otherwise the node will be large enough to hold the label
  4. */
  5. digraph "nwidth"
  6. {
  7. /* default is 0.75 */
  8. "a"[label="width=default"];
  9. /* negative number, no warning */
  10. "b"[label="width=-1",width="-1"];
  11. /* zero number, no warning */
  12. "c"[label="width=0",width="0"];
  13. /* minimum is 0.01 */
  14. "d"[label="width=0.02",width="0.02"];
  15. /* bigger */
  16. "e"[label="width=2",width="2"];
  17. /* bigger */
  18. "f"[label="width=4",width="4"];
  19. }