Changeset 1218
- Timestamp:
- Feb 12, 2014 2:32:04 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIplot.py
r1217 r1218 687 687 'c: contour on','q: toggle q plot','s: toggle single plot','+: no selection') 688 688 elif 'SASD' in plottype: 689 Page.Choice = (' key press',' n: loglog off','l: offset left','r: offset right',690 'd: offset down',' u: offset up','o: reset offset','q: toggle S(q) plot',691 ' c: contour on','s: toggle single plot','+: no selection')689 Page.Choice = (' key press','c: contour on','n: semilog on', 690 'd: offset down','l: offset left','r: offset right','u: offset up','o: reset offset', 691 'q: toggle S(q) plot','s: toggle single plot','+: no selection') 692 692 else: 693 693 if 'PWDR' in plottype: … … 696 696 'q: toggle q plot','s: toggle single plot','w: toggle divide by sig','+: no selection') 697 697 elif 'SASD' in plottype: 698 Page.Choice = (' key press',' e: toggle error bars','l: offset left','r: offset right','d: offset down',699 ' u: offset up','o: reset offset','n: loglog on','c: contour on',700 ' s: toggle single plot','+: no selection')698 Page.Choice = (' key press','c: contour on','n: loglog on','e: toggle error bars', 699 'd: offset down','l: offset left','r: offset right','u: offset up','o: reset offset', 700 'q: toggle S(q) plot','s: toggle single plot','+: no selection') 701 701 Page.keyPress = OnPlotKeyPress 702 702 … … 885 885 Plot.plot(Xum,Y,colors[N%6]+'+',picker=3.,clip_on=False) 886 886 Plot.plot(X,Z,colors[(N+1)%6],picker=False) 887 Plot.set_yscale("log",nonposy='mask') 888 Plot.set_ylim(bottom=np.min(np.trim_zeros(Y))/2.) 887 889 if 'PWDR' in plottype: 888 890 Plot.plot(X,W,colors[(N+2)%6],picker=False) … … 917 919 elif 'SASD' in plottype: 918 920 Plot.semilogy(X,Y,colors[N%6],picker=False,nonposy='mask') 921 Plot.set_ylim(bottom=np.min(np.trim_zeros(Y))/2.) 919 922 if G2frame.logPlot: 920 923 Plot.set_ylim(bottom=np.min(np.trim_zeros(Y))/2.)
Note: See TracChangeset
for help on using the changeset viewer.