Search found 2 matches

by thomchad
Mon Jul 27, 2009 7:18 pm
Forum: Graphics, Figures & Tables
Topic: Pstricks nodes in color
Replies: 1
Views: 2204

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
by thomchad
Mon Jul 27, 2009 6:11 pm
Forum: Graphics, Figures & Tables
Topic: Pstricks nodes in color
Replies: 1
Views: 2204

Pstricks nodes in color

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