Hi Ulrich,
The SetLineWidth, etc only sets the current atrtribute in PostScript.
These functions are called by the Root paint functions with arguments
corresponding to the attributes of the objects being paint. Your calls
have
no effect.
You should define a style (eg "Plain") with the corresponding
attributes.
By default, the picture on the Postscript page is drawn bottom left.
You can modify the position with TStyle::SetHeaderPS. For example
gStyle->SetHeaderPS("300 500 translate");
> 2) I draw a frame with
> getCanvas()->DrawFrame(xmin-xmargin, ymin-ymargin,
> xmax+xmargin, ymax+ymargin,
> title);
> The title overlaps with the axis scaling factor ("x10**5"), can I shift
> its position to the right? Change its look and feel? How can I access this
> object?
>
Use TStyle::setTitleX, Y, W, etc
Rene Brun