Changeset fef38e8 in sasview for src/sas/qtgui/Plotting/Plotter.py
- Timestamp:
- Sep 13, 2017 6:24:34 AM (7 years ago)
- Branches:
- ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- 3c8242c
- Parents:
- 9909967
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Plotting/Plotter.py
rdc5ef15 rfef38e8 3 3 import functools 4 4 import copy 5 6 5 import matplotlib.pyplot as plt 7 6 from matplotlib.font_manager import FontProperties 8 9 7 from sas.qtgui.Plotting.PlotterData import Data1D 10 11 8 from sas.qtgui.Plotting.PlotterBase import PlotterBase 12 9 from sas.qtgui.Plotting.AddText import AddText … … 390 387 Deletes the selected plot from the chart 391 388 """ 392 if id not in self.plot_dict :389 if id not in self.plot_dict.keys(): 393 390 return 394 391
Note: See TracChangeset
for help on using the changeset viewer.