Changeset 8fad50b in sasview for src/sas/qtgui/Plotting/Plotter2D.py


Ignore:
Timestamp:
Oct 26, 2018 5:37:59 AM (6 years ago)
Author:
Piotr Rozyczko <piotr.rozyczko@…>
Branches:
ESS_GUI, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
Children:
33812c3
Parents:
8748751
Message:

Replaced pylab.cm with mpl.cm (PK's code review)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/Plotting/Plotter2D.py

    r2f55df6 r8fad50b  
    11import copy 
    22import numpy 
    3 import pylab 
    43import functools 
    54import logging 
     
    98from PyQt5 import QtWidgets 
    109 
    11 DEFAULT_CMAP = pylab.cm.jet 
    1210 
    1311#import sys 
     
    1513import matplotlib as mpl 
    1614mpl.use("Qt5Agg") 
     15DEFAULT_CMAP = mpl.cm.jet 
    1716 
    1817from mpl_toolkits.mplot3d import Axes3D 
Note: See TracChangeset for help on using the changeset viewer.