I'm having some problems with numeric axis labels that overlap. In my
mind, the default output should always be non-overlapping. Is this a
known issue? Or is there a way to fix this? (Or am I doing something
wrong?) I've inlined some sample code below that shows overlapping
text on the y-axis. I'm using version 5.3.0 on Debian.
Harry
#include <plplot.h>
int main()
{
plinit();
pladv(0);
plvpor(0.0, 1.0, 0.0, 0.9);
plwind(-1.0, 1.0, -1.0, 1.5);
plw3d(1.0, 1.0, 1.2, 0, 66, 450, 1650, -21.15, 149.27, 22.5, 30);
plbox3("bnstu", "x", 0.0, 0,
"bnstu", "y", 0.0, 0,
"bcdmnstuv", "z", 0.0, 4);
plend();
return 0;
}
|