I have plplot-5.7.1
There are some data showing time evolution.
I'd like to have scale  of x axis large than y.
I define it via plvpor  (see code below)
The ps driver rotate the picture on -90.
Can I avoid this with plplot tools?
Other drivers, like xwin or png, do job as expected.
Note, if I define the aspect ratio less than 1 (y scale > x) ps driver do job 
nicely but picture is ugly.
    
best regards
Valery

##########
the code for python

def plph ():
    plscol0(1,0,0,0); 
    plsdev("png");plsfnam("intm1.png");
    #plsdev("psttf");plsfnam("intm1.ps");
    plscolbg(255,255,255);
    plinit();
    pladv(0);
    plvpor(0.1, 0.9, 0.3, 0.8);
    plwind(min(time),max(time), min(emfh),max(emfh));
    #plenv(min(time),max(time), min(emfh),max(emfh),0,-1);
    plwid(2);
    pllsty(1);plcol0(14);
    plline(time,emfh)
    pllsty(1);plcol0(1);
    plbox("bnit", 0, 0, "bntv", 0, 0);
    pllab("TIME","E#dz","#gy=0");
    plend()

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Plplot-general mailing list
Plplot-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/plplot-general

Reply via email to