Hi,
I would like to fill my nodes with color. I guess I could use pscircle, but that means I have to define a node AND a circle for each node, which gets very messy.
So far, I have this:
\cnodeput(0,0){A}{A}
and I'd like to have something like this:
\cnodeput[fillcolor=blue](0,0){A}{A}
Is there any way to get that?
Thanks!
Thomas
Graphics, Figures & Tables ⇒ Pstricks nodes in color
NEW: TikZ book now 40% off at Amazon.com for a short time.

Re: Pstricks nodes in color
Nevermind, I found the answer. I forgot to add "fillstyle=solid".
So this works:
\cnodeput[fillstyle=solid,fillcolor=lightgray](0,0){B}{B}
Tom
So this works:
\cnodeput[fillstyle=solid,fillcolor=lightgray](0,0){B}{B}
Tom