Changeset 2802 for trunk/GSASIIplot.py
- Timestamp:
- Apr 23, 2017 9:30:38 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIplot.py
r2797 r2802 22 22 import wx.glcanvas 23 23 import matplotlib as mpl 24 try: # code not found in readthedocs 25 import matplotlib.collections as mplC 26 except: 27 print('matplotlib.collections not present') 24 import matplotlib.collections as mplC 28 25 import mpl_toolkits.mplot3d.axes3d as mp3d 29 26 import GSASIIpath … … 1206 1203 Note that plotting information will be found in: 1207 1204 G2frame.PatternId (contains the tree item for the current histogram) 1205 1208 1206 G2frame.PickId (contains the actual selected tree item (can be child of histogram) 1207 1209 1208 G2frame.HKL (used for tool tip display of hkl for selected phase reflection list) 1210 1209 ''' … … 2842 2841 :param str Title: title for plot 2843 2842 :param bool lines: = True if lines desired for XY plot; XY2 always plotted as lines 2844 :param list of str names: legend names for each XY plot2845 :param list of str names2: legend names for each XY2 plot2846 :param list s of vertical line x-positions list; can be one for each XY2847 :return nothing2843 :param list names: legend names for each XY plot as list a of str values 2844 :param list names2: legend names for each XY2 plot as list a of str values 2845 :param list vertLines: lists of vertical line x-positions; can be one for each XY 2846 :returns: nothing 2848 2847 2849 2848 ''' … … 2964 2963 :param bool newPlot: =True if new plot is to be made 2965 2964 :param str Title: title for plot 2966 :return nothing2965 :returns: nothing 2967 2966 2968 2967 ''' … … 4332 4331 Called from a menu command (GSASIIimgGUI) or from OnImPlotKeyPress. 4333 4332 Variable G2frame.MaskKey contains a single letter ('f' or 'p', etc.) that 4334 4333 determines what type of mask is created. 4335 4334 4336 4335 :param wx.Frame G2frame: The main GSAS-II tree "window"
Note: See TracChangeset
for help on using the changeset viewer.