pmdelgado2
unread,Dec 12, 2012, 12:45:14 PM12/12/12You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
Instead of forcing the edge to have the same color, you can prescribe it to have NO color at all. This effectively makes the entire rectangle a single color. For example, a rectangle starting from the point (0,0) with width 2 and height 1, blue colored and with no border is coded as:
rectangle('Position',[0 0 2 1],'FaceColor','b','EdgeColor','None');
or, you could change 'None' to 'b' to make the edge the same as the face.
Regards,
pmdelgado2