|
From: Ethan A M. <merritt@u.washington.edu> - 2007-12-09 23:43:26
|
On Sunday 09 December 2007 13:27, Petr Mikulik wrote:
> > A related possibility is to add a global linewidth multiplier in the
> > core driver:
> > set term x11 linewidth LW
> > That way if you want all the lines to be thicker, you can set this from
> > inside gnuplot rather than having to use xrdb to change the values of
> > gnuplot*linewidthN in the XResource database.
> > Many other drivers already work like this.
>
> Yes, this option is nicer.
OK. I'll put that in CVS. It's a trivial change, and has no issues
with backward compatibility.
> I've found this issue by testing the latest release of Octave 2.9.18 and I
> was wondering why the border lines are so thick (compared to Matlab). Then
> I've found it was only a problem at X11, but I couldn't find how to fix it.
Several ways, now that I have fixed the typos in gplt_x11.c
1) In Gnuplot.app-defaults, change the line
gnuplot*borderWidth: 2
2) same thing, only in your ~/.Xdefaults file
3) same thing, but dynamically for this X session
echo "gnuplot*borderWidth: 1" | xrdb -merge
4) gnuplot -bw 1
5) gnuplot -borderwidth 1
--
Ethan A Merritt
Biomolecular Structure Center
University of Washington, Seattle 98195-7742
|