Changeset 2038


Ignore:
Timestamp:
03/13/11 18:33:42 (13 years ago)
Author:
Kana Sugimoto
Message:

New Development: Yes

JIRA Issue: Yes (CAS-2894/ASAP-237)

Ready for Test: Yes

Interface Changes: No

What Interface Changed:

Test Programs:

Put in Release Notes: Yes

Module(s): asapplotter, sdplot

Description: discarded 16 panels limit when column and row numbers of subplots are set by asapplotter.set_layout.


File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/python/asapplotter.py

    r2037 r2038  
    877877            asaplog.post('WARN')
    878878            nstack = min(nstack,maxstack)
    879         n = min(n-self._ipanel-1,maxpanel)
     879        #n = min(n-self._ipanel-1,maxpanel)
     880        n = n-self._ipanel-1
    880881
    881882        ganged = False
     
    889890                                         nplots=n,margin=self._margins,ganged=ganged)
    890891            else:
     892                n = min(n,maxpanel)
    891893                self._plotter.set_panels(rows=n,cols=0,nplots=n,margin=self._margins,ganged=ganged)
    892894        else:
Note: See TracChangeset for help on using the changeset viewer.