Another graph postscript relief bug
Brought to you by:
ghowlett
Following example produces postscript with raised
relief (using BLT 2.4z):
package require BLT
blt::graph .g -plotrelief flat -background white
.g element create x -xdata {0 1} -ydata {4 5} -symbol
""
.g legend configure -hide 1
pack .g
file delete g.ps
.g postscript output g.ps
Logged In: YES
user_id=137748
Instead of setting -plotrelief to flat, try changing
-plotborderwidth to
0. This way no border will be displayed (in PostScript too).
--gah
Logged In: YES
user_id=119413
I'm having a similar problem. The -plotborderwidth 0 technique
suggested by George works as described, but a similar trick
doesn't work to get rid of the border on the legend.
Similar script as above, but producing a legend with sunken
relief (using BLT2.4z):
------------------
package require BLT
blt::graph .g
.g element create x -xdata {0 1} -ydata {0 1}
.g legend configure -relief flat -activerelief flat -borderwidth
0 -activeborderwidth 0
pack .g
file delete g.ps
.g postscript output g.ps
------------------