source: sasview/src/sas/qtgui/Plotting/Plotter2D.py @ 8c85ac1

ESS_GUIESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalc
Last change on this file since 8c85ac1 was 8c85ac1, checked in by Piotr Rozyczko <piotr.rozyczko@…>, 5 years ago

Fixed plot generation and handling in the generic scattering calc.
SASVIEW-1216

  • Property mode set to 100644
File size: 20.6 KB
RevLine 
[49e124c]1import copy
2import numpy
[092a3d9]3import functools
[d6b8a1d]4import logging
[49e124c]5
[4992ff2]6from PyQt5 import QtCore
7from PyQt5 import QtGui
8from PyQt5 import QtWidgets
[49e124c]9
[4992ff2]10
11import matplotlib as mpl
[8fad50b]12DEFAULT_CMAP = mpl.cm.jet
[4992ff2]13
[9290b1a]14from mpl_toolkits.mplot3d import Axes3D
[31c5b58]15
[dc5ef15]16from sas.sascalc.dataloader.manipulations import CircularAverage
17
18from sas.qtgui.Plotting.PlotterData import Data1D
19from sas.qtgui.Plotting.PlotterData import Data2D
20
[83eb5208]21import sas.qtgui.Plotting.PlotUtilities as PlotUtilities
22import sas.qtgui.Utilities.GuiUtils as GuiUtils
23from sas.qtgui.Plotting.PlotterBase import PlotterBase
24from sas.qtgui.Plotting.ColorMap import ColorMap
25from sas.qtgui.Plotting.BoxSum import BoxSum
26from sas.qtgui.Plotting.SlicerParameters import SlicerParameters
[dc5ef15]27from sas.qtgui.Plotting.Binder import BindArtist
28
29# TODO: move to sas.qtgui namespace
30from sas.qtgui.Plotting.Slicers.BoxSlicer import BoxInteractorX
31from sas.qtgui.Plotting.Slicers.BoxSlicer import BoxInteractorY
32from sas.qtgui.Plotting.Slicers.AnnulusSlicer import AnnulusInteractor
33from sas.qtgui.Plotting.Slicers.SectorSlicer import SectorInteractor
34from sas.qtgui.Plotting.Slicers.BoxSum import BoxSumCalculator
[49e124c]35
[fecfe28]36# Minimum value of Z for which we will present data.
[3bdbfcc]37MIN_Z = -32
[fecfe28]38
[416fa8f]39class Plotter2DWidget(PlotterBase):
[c4e5400]40    """
41    2D Plot widget for use with a QDialog
[fecfe28]42    """
[416fa8f]43    def __init__(self, parent=None, manager=None, quickplot=False, dimension=2):
[55d89f8]44        self.dimension = dimension
[416fa8f]45        super(Plotter2DWidget, self).__init__(parent, manager=manager, quickplot=quickplot)
[49e124c]46
[092a3d9]47        self.cmap = DEFAULT_CMAP.name
48        # Default scale
49        self.scale = 'log_{10}'
[3bdbfcc]50        # to set the order of lines drawn first.
51        self.slicer_z = 5
52        # Reference to the current slicer
53        self.slicer = None
[57b7ee2]54        self.slicer_widget = None
[3bdbfcc]55        # Create Artist and bind it
56        self.connect = BindArtist(self.figure)
[5d89f43]57        self.vmin = None
58        self.vmax = None
[e20870bc]59        self.im = None
[092a3d9]60
[116260a]61        self.manager = manager
62
[31c5b58]63    @property
64    def data(self):
65        return self._data
66
67    @data.setter
[49e124c]68    def data(self, data=None):
69        """ data setter """
[14d9c7b]70        self._data = data
[fecfe28]71        self.qx_data = data.qx_data
72        self.qy_data = data.qy_data
73        self.xmin = data.xmin
74        self.xmax = data.xmax
75        self.ymin = data.ymin
76        self.ymax = data.ymax
77        self.zmin = data.zmin
78        self.zmax = data.zmax
79        self.label = data.name
80        self.xLabel = "%s(%s)"%(data._xaxis, data._xunit)
81        self.yLabel = "%s(%s)"%(data._yaxis, data._yunit)
[49e124c]82        self.title(title=data.title)
83
[dce68f6]84    def plot(self, data=None, marker=None, show_colorbar=True, update=False):
[49e124c]85        """
86        Plot 2D self._data
[5236449]87        marker - unused
[49e124c]88        """
[9290b1a]89        # Assing data
90        if isinstance(data, Data2D):
91            self.data = data
92
[34f13a83]93        if not self._data:
[1f34e00]94            return
[9290b1a]95
[64f1e93]96        # Toggle the scale
[092a3d9]97        zmin_2D_temp, zmax_2D_temp = self.calculateDepth()
[31c5b58]98
[64f1e93]99        # Prepare and show the plot
100        self.showPlot(data=self.data.data,
101                      qx_data=self.qx_data,
102                      qy_data=self.qy_data,
103                      xmin=self.xmin,
104                      xmax=self.xmax,
105                      ymin=self.ymin, ymax=self.ymax,
106                      cmap=self.cmap, zmin=zmin_2D_temp,
[dce68f6]107                      zmax=zmax_2D_temp, show_colorbar=show_colorbar,
108                      update=update)
[6d05e1d]109
[87ca467]110        self.updateCircularAverage()
111
[092a3d9]112    def calculateDepth(self):
113        """
114        Re-calculate the plot depth parameters depending on the scale
115        """
116        # Toggle the scale
[f5cec7c]117        zmin_temp = self.zmin
[092a3d9]118        zmax_temp = self.zmax
119        # self.scale predefined in the baseclass
[d6b8a1d]120        # in numpy > 1.12 power(int, -int) raises ValueException
121        # "Integers to negative integer powers are not allowed."
[092a3d9]122        if self.scale == 'log_{10}':
123            if self.zmin is not None:
[d6b8a1d]124                zmin_temp = numpy.power(10.0, self.zmin)
[092a3d9]125            if self.zmax is not None:
[d6b8a1d]126                zmax_temp = numpy.power(10.0, self.zmax)
[092a3d9]127        else:
128            if self.zmin is not None:
129                # min log value: no log(negative)
130                zmin_temp = MIN_Z if self.zmin <= 0 else numpy.log10(self.zmin)
131            if self.zmax is not None:
132                zmax_temp = numpy.log10(self.zmax)
133
134        return (zmin_temp, zmax_temp)
135
136
[b46f285]137    def createContextMenu(self):
[c4e5400]138        """
139        Define common context menu and associated actions for the MPL widget
140        """
141        self.defaultContextMenu()
142
[092a3d9]143        self.contextMenu.addSeparator()
144        self.actionDataInfo = self.contextMenu.addAction("&DataInfo")
145        self.actionDataInfo.triggered.connect(
[161713c]146             functools.partial(self.onDataInfo, self.data))
[092a3d9]147
148        self.actionSavePointsAsFile = self.contextMenu.addAction("&Save Points as a File")
149        self.actionSavePointsAsFile.triggered.connect(
[161713c]150             functools.partial(self.onSavePoints, self.data))
[092a3d9]151        self.contextMenu.addSeparator()
152
153        self.actionCircularAverage = self.contextMenu.addAction("&Perform Circular Average")
154        self.actionCircularAverage.triggered.connect(self.onCircularAverage)
155
156        self.actionSectorView = self.contextMenu.addAction("&Sector [Q View]")
157        self.actionSectorView.triggered.connect(self.onSectorView)
158        self.actionAnnulusView = self.contextMenu.addAction("&Annulus [Phi View]")
159        self.actionAnnulusView.triggered.connect(self.onAnnulusView)
160        self.actionBoxSum = self.contextMenu.addAction("&Box Sum")
161        self.actionBoxSum.triggered.connect(self.onBoxSum)
162        self.actionBoxAveragingX = self.contextMenu.addAction("&Box Averaging in Qx")
163        self.actionBoxAveragingX.triggered.connect(self.onBoxAveragingX)
164        self.actionBoxAveragingY = self.contextMenu.addAction("&Box Averaging in Qy")
165        self.actionBoxAveragingY.triggered.connect(self.onBoxAveragingY)
[3bdbfcc]166        # Additional items for slicer interaction
167        if self.slicer:
168            self.actionClearSlicer = self.contextMenu.addAction("&Clear Slicer")
169            self.actionClearSlicer.triggered.connect(self.onClearSlicer)
[57b7ee2]170            if self.slicer.__class__.__name__ != "BoxSumCalculator":
171                self.actionEditSlicer = self.contextMenu.addAction("&Edit Slicer Parameters")
172                self.actionEditSlicer.triggered.connect(self.onEditSlicer)
[092a3d9]173        self.contextMenu.addSeparator()
174        self.actionColorMap = self.contextMenu.addAction("&2D Color Map")
175        self.actionColorMap.triggered.connect(self.onColorMap)
176        self.contextMenu.addSeparator()
177        self.actionChangeScale = self.contextMenu.addAction("Toggle Linear/Log Scale")
178        self.actionChangeScale.triggered.connect(self.onToggleScale)
179
[b46f285]180    def createContextMenuQuick(self):
[6d05e1d]181        """
182        Define context menu and associated actions for the quickplot MPL widget
183        """
[c4e5400]184        self.defaultContextMenu()
185
[55d89f8]186        if self.dimension == 2:
187            self.actionToggleGrid = self.contextMenu.addAction("Toggle Grid On/Off")
188            self.contextMenu.addSeparator()
[6d05e1d]189        self.actionChangeScale = self.contextMenu.addAction("Toggle Linear/Log Scale")
190
191        # Define the callbacks
[c4e5400]192        self.actionChangeScale.triggered.connect(self.onToggleScale)
[55d89f8]193        if self.dimension == 2:
194            self.actionToggleGrid.triggered.connect(self.onGridToggle)
[6d05e1d]195
196    def onToggleScale(self, event):
197        """
198        Toggle axis and replot image
199        """
[092a3d9]200        # self.scale predefined in the baseclass
201        if self.scale == 'log_{10}':
202            self.scale = 'linear'
203        else:
204            self.scale = 'log_{10}'
205
[55d89f8]206        self.plot()
[6d05e1d]207
[3bdbfcc]208    def onClearSlicer(self):
209        """
210        Remove all sclicers from the chart
211        """
[b789967]212        if self.slicer is None:
213            return
214
215        self.slicer.clear()
216        self.canvas.draw()
217        self.slicer = None
[3bdbfcc]218
219    def onEditSlicer(self):
220        """
221        Present a small dialog for manipulating the current slicer
222        """
223        assert self.slicer
[57b7ee2]224        # Only show the dialog if not currently shown
225        if self.slicer_widget:
226            return
227        def slicer_closed():
228            # Need to disconnect the signal!!
[2f55df6]229            self.slicer_widget.closeWidgetSignal.disconnect()
230            self.manager.parent.workspace().removeSubWindow(self.slicer_subwindow)
[57b7ee2]231            # reset slicer_widget on "Edit Slicer Parameters" window close
232            self.slicer_widget = None
[3bdbfcc]233
234        self.param_model = self.slicer.model()
[57b7ee2]235        # Pass the model to the Slicer Parameters widget
[161713c]236        self.slicer_widget = SlicerParameters(model=self.param_model,
237                                              validate_method=self.slicer.validate)
[2f55df6]238        self.slicer_widget.closeWidgetSignal.connect(slicer_closed)
[9a05a8d5]239        # Add the plot to the workspace
[2f55df6]240        self.slicer_subwindow = self.manager.parent.workspace().addSubWindow(self.slicer_widget)
[b789967]241
[3bdbfcc]242        self.slicer_widget.show()
243
[87ca467]244    def circularAverage(self):
[092a3d9]245        """
[87ca467]246        Calculate the circular average and create the Data object for it
[092a3d9]247        """
[3bdbfcc]248        # Find the best number of bins
249        npt = numpy.sqrt(len(self.data.data[numpy.isfinite(self.data.data)]))
250        npt = numpy.floor(npt)
251        # compute the maximum radius of data2D
252        self.qmax = max(numpy.fabs(self.data.xmax),
253                        numpy.fabs(self.data.xmin))
254        self.ymax = max(numpy.fabs(self.data.ymax),
255                        numpy.fabs(self.data.ymin))
256        self.radius = numpy.sqrt(numpy.power(self.qmax, 2) + numpy.power(self.ymax, 2))
257        #Compute beam width
258        bin_width = (self.qmax + self.qmax) / npt
259        # Create data1D circular average of data2D
260        circle = CircularAverage(r_min=0, r_max=self.radius, bin_width=bin_width)
261        circ = circle(self.data)
262        dxl = circ.dxl if hasattr(circ, "dxl") else None
263        dxw = circ.dxw if hasattr(circ, "dxw") else None
264
265        new_plot = Data1D(x=circ.x, y=circ.y, dy=circ.dy, dx=circ.dx)
266        new_plot.dxl = dxl
267        new_plot.dxw = dxw
268        new_plot.name = new_plot.title = "Circ avg " + self.data.name
269        new_plot.source = self.data.source
270        new_plot.interactive = True
271        new_plot.detector = self.data.detector
272
273        # Define axes if not done yet.
274        new_plot.xaxis("\\rm{Q}", "A^{-1}")
275        if hasattr(self.data, "scale") and \
276                    self.data.scale == 'linear':
277            new_plot.ytransform = 'y'
278            new_plot.yaxis("\\rm{Residuals} ", "normalized")
279        else:
280            new_plot.yaxis("\\rm{Intensity} ", "cm^{-1}")
281
282        new_plot.group_id = "2daverage" + self.data.name
283        new_plot.id = "Circ avg " + self.data.name
284        new_plot.is_data = True
[87ca467]285
286        return new_plot
287
288    def onCircularAverage(self):
289        """
290        Perform circular averaging on Data2D
291        """
292        new_plot = self.circularAverage()
293
[a0ad146]294        item = self._item
[63467b6]295        if self._item.parent() is not None:
296            item = self._item.parent()
[87ca467]297
[63467b6]298        GuiUtils.updateModelItemWithPlot(item, new_plot, new_plot.id)
[d6b8a1d]299
[116260a]300        self.manager.communicator.plotUpdateSignal.emit([new_plot])
[b9ab979]301        self.manager.communicator.forcePlotDisplaySignal.emit([item, new_plot])
302
[87ca467]303    def updateCircularAverage(self):
304        """
305        Update circular averaging plot on Data2D change
306        """
[8c85ac1]307        if not hasattr(self,'_item'): return
[87ca467]308        item = self._item
309        if self._item.parent() is not None:
310            item = self._item.parent()
311
312        # Get all plots for current item
313        plots = GuiUtils.plotsFromModel("", item)
[8c85ac1]314        if plots is None: return
[87ca467]315        ca_caption = '2daverage'+self.data.name
316        # See if current item plots contain 2D average plot
[8c85ac1]317        has_plot = False
318        for plot in plots:
319            if plot.group_id is None: continue
320            if ca_caption in plot.group_id: has_plot=True
[87ca467]321        # return prematurely if no circular average plot found
[8c85ac1]322        if not has_plot: return
[87ca467]323
324        # Create a new plot
325        new_plot = self.circularAverage()
326
327        # Overwrite existing plot
328        GuiUtils.updateModelItemWithPlot(item, new_plot, new_plot.id)
329        # Show the new plot, if already visible
330        self.manager.communicator.plotUpdateSignal.emit([new_plot])
[b9ab979]331
[3bdbfcc]332    def setSlicer(self, slicer):
333        """
334        Clear the previous slicer and create a new one.
335        slicer: slicer class to create
336        """
337        # Clear current slicer
338        if self.slicer is not None:
339            self.slicer.clear()
340        # Create a new slicer
341        self.slicer_z += 1
342        self.slicer = slicer(self, self.ax, item=self._item, zorder=self.slicer_z)
343        self.ax.set_ylim(self.data.ymin, self.data.ymax)
344        self.ax.set_xlim(self.data.xmin, self.data.xmax)
345        # Draw slicer
346        self.figure.canvas.draw()
347        self.slicer.update()
[092a3d9]348
[57b7ee2]349        # Reset the model on the Edit slicer parameters widget
350        self.param_model = self.slicer.model()
351        if self.slicer_widget:
352            self.slicer_widget.setModel(self.param_model)
353
[092a3d9]354    def onSectorView(self):
355        """
[3bdbfcc]356        Perform sector averaging on Q and draw sector slicer
[092a3d9]357        """
[3bdbfcc]358        self.setSlicer(slicer=SectorInteractor)
[092a3d9]359
360    def onAnnulusView(self):
361        """
[3bdbfcc]362        Perform sector averaging on Phi and draw annulus slicer
[092a3d9]363        """
[3bdbfcc]364        self.setSlicer(slicer=AnnulusInteractor)
[092a3d9]365
366    def onBoxSum(self):
367        """
[3bdbfcc]368        Perform 2D Data averaging Qx and Qy.
369        Display box slicer details.
[092a3d9]370        """
[3bdbfcc]371        self.onClearSlicer()
372        self.slicer_z += 1
373        self.slicer = BoxSumCalculator(self, self.ax, zorder=self.slicer_z)
374
375        self.ax.set_ylim(self.data.ymin, self.data.ymax)
376        self.ax.set_xlim(self.data.xmin, self.data.xmax)
377        self.figure.canvas.draw()
378        self.slicer.update()
379
[5eebcd6]380        def boxWidgetClosed():
381            # Need to disconnect the signal!!
382            self.boxwidget.closeWidgetSignal.disconnect()
383            # reset box on "Edit Slicer Parameters" window close
384            self.manager.parent.workspace().removeSubWindow(self.boxwidget_subwindow)
385            self.boxwidget = None
386
[3bdbfcc]387        # Get the BoxSumCalculator model.
388        self.box_sum_model = self.slicer.model()
389        # Pass the BoxSumCalculator model to the BoxSum widget
390        self.boxwidget = BoxSum(self, model=self.box_sum_model)
391        # Add the plot to the workspace
[5eebcd6]392        self.boxwidget_subwindow = self.manager.parent.workspace().addSubWindow(self.boxwidget)
393        self.boxwidget.closeWidgetSignal.connect(boxWidgetClosed)
394
[3bdbfcc]395        self.boxwidget.show()
[092a3d9]396
397    def onBoxAveragingX(self):
398        """
[3bdbfcc]399        Perform 2D data averaging on Qx
400        Create a new slicer.
[092a3d9]401        """
[3bdbfcc]402        self.setSlicer(slicer=BoxInteractorX)
[092a3d9]403
404    def onBoxAveragingY(self):
405        """
[3bdbfcc]406        Perform 2D data averaging on Qy
407        Create a new slicer .
[092a3d9]408        """
[3bdbfcc]409        self.setSlicer(slicer=BoxInteractorY)
[092a3d9]410
411    def onColorMap(self):
412        """
413        Display the color map dialog and modify the plot's map accordingly
414        """
415        color_map_dialog = ColorMap(self, cmap=self.cmap,
[03c372d]416                                    vmin=self.vmin,
417                                    vmax=self.vmax,
[092a3d9]418                                    data=self.data)
419
[5d89f43]420        color_map_dialog.apply_signal.connect(self.onApplyMap)
421
[4992ff2]422        if color_map_dialog.exec_() == QtWidgets.QDialog.Accepted:
[5d89f43]423            self.onApplyMap(color_map_dialog.norm(), color_map_dialog.cmap())
424
425    def onApplyMap(self, v_values, cmap):
426        """
427        Update the chart color map based on data passed from the widget
428        """
429        self.cmap = str(cmap)
430        self.vmin, self.vmax = v_values
431        # Redraw the chart with new cmap
432        self.plot()
[092a3d9]433
[64f1e93]434    def showPlot(self, data, qx_data, qy_data, xmin, xmax, ymin, ymax,
[dce68f6]435                 zmin, zmax, label='data2D', cmap=DEFAULT_CMAP, show_colorbar=True,
436                 update=False):
[6d05e1d]437        """
[64f1e93]438        Render and show the current data
[6d05e1d]439        """
440        self.qx_data = qx_data
441        self.qy_data = qy_data
442        self.xmin = xmin
443        self.xmax = xmax
444        self.ymin = ymin
445        self.ymax = ymax
446        self.zmin = zmin
447        self.zmax = zmax
448        # If we don't have any data, skip.
[fecfe28]449        if data is None:
[6d05e1d]450            return
[f4a1433]451        if data.ndim == 0:
452            return
453        elif data.ndim == 1:
[6d05e1d]454            output = PlotUtilities.build_matrix(data, self.qx_data, self.qy_data)
455        else:
456            output = copy.deepcopy(data)
457
[fce6c55]458        # get the x and y_bin arrays.
459        x_bins, y_bins = PlotUtilities.get_bins(self.qx_data, self.qy_data)
460        self._data.x_bins = x_bins
461        self._data.y_bins = y_bins
462
[6d05e1d]463        zmin_temp = self.zmin
464        # check scale
465        if self.scale == 'log_{10}':
466            try:
[f5cec7c]467                if  self.zmin is None  and len(output[output > 0]) > 0:
[092a3d9]468                    zmin_temp = self.zmin
[6d05e1d]469                    output[output > 0] = numpy.log10(output[output > 0])
470                elif self.zmin <= 0:
471                    zmin_temp = self.zmin
472                    output[output > 0] = numpy.zeros(len(output))
[fecfe28]473                    output[output <= 0] = MIN_Z
[6d05e1d]474                else:
475                    zmin_temp = self.zmin
476                    output[output > 0] = numpy.log10(output[output > 0])
477            except:
478                #Too many problems in 2D plot with scale
479                pass
480
481        self.cmap = cmap
482        if self.dimension != 3:
483            #Re-adjust colorbar
484            self.figure.subplots_adjust(left=0.2, right=.8, bottom=.2)
485
[5d89f43]486            zmax_temp = self.zmax
487            if self.vmin is not None:
488                zmin_temp = self.vmin
489                zmax_temp = self.vmax
[dce68f6]490            if self.im is not None and update:
[e20870bc]491                self.im.set_data(output)
492            else:
493                self.im = self.ax.imshow(output, interpolation='nearest',
[f5cec7c]494                                origin='lower',
[5d89f43]495                                vmin=zmin_temp, vmax=zmax_temp,
[6d05e1d]496                                cmap=self.cmap,
497                                extent=(self.xmin, self.xmax,
498                                        self.ymin, self.ymax))
499
[676a430]500            cbax = self.figure.add_axes([0.88, 0.2, 0.02, 0.7])
[b4b8589]501
502            # Current labels for axes
503            self.ax.set_ylabel(self.y_label)
504            self.ax.set_xlabel(self.x_label)
505
506            # Title only for regular charts
507            if not self.quickplot:
508                self.ax.set_title(label=self._title)
509
[fecfe28]510            if cbax is None:
511                ax.set_frame_on(False)
[e20870bc]512                cb = self.figure.colorbar(self.im, shrink=0.8, aspect=20)
[fecfe28]513            else:
[e20870bc]514                cb = self.figure.colorbar(self.im, cax=cbax)
[fecfe28]515
[e20870bc]516            cb.update_bruteforce(self.im)
[fecfe28]517            cb.set_label('$' + self.scale + '$')
[b4b8589]518
[092a3d9]519            self.vmin = cb.vmin
520            self.vmax = cb.vmax
521
[d5c5d3d]522            if show_colorbar is False:
523                cb.remove()
524
[6d05e1d]525        else:
526            # clear the previous 2D from memory
527            self.figure.clear()
528
529            self.figure.subplots_adjust(left=0.1, right=.8, bottom=.1)
530
[3bdbfcc]531            data_x, data_y = numpy.meshgrid(self._data.x_bins[0:-1],
532                                            self._data.y_bins[0:-1])
[6d05e1d]533
[64f1e93]534            ax = Axes3D(self.figure)
[b4b8589]535
[64f1e93]536            # Disable rotation for large sets.
537            # TODO: Define "large" for a dataset
538            SET_TOO_LARGE = 500
[3bdbfcc]539            if len(data_x) > SET_TOO_LARGE:
[64f1e93]540                ax.disable_mouse_rotation()
541
[6d05e1d]542            self.figure.canvas.resizing = False
[3bdbfcc]543            im = ax.plot_surface(data_x, data_y, output, rstride=1,
544                                 cstride=1, cmap=cmap,
[6d05e1d]545                                 linewidth=0, antialiased=False)
[55d89f8]546            self.ax.set_axis_off()
[6d05e1d]547
548        if self.dimension != 3:
549            self.figure.canvas.draw_idle()
550        else:
551            self.figure.canvas.draw()
[416fa8f]552
[1942f63]553    def imageShow(self, img, origin=None):
554        """
555        Show background image
556        :Param img: [imread(path) from matplotlib.pyplot]
557        """
558        if origin is not None:
559            im = self.ax.imshow(img, origin=origin)
560        else:
561            im = self.ax.imshow(img)
562
[3bdbfcc]563    def update(self):
564        self.figure.canvas.draw()
565
566    def draw(self):
567        self.figure.canvas.draw()
568
[0274aea]569    def replacePlot(self, id, new_plot):
570        """
571        Replace data in current chart.
[01cda57]572        This effectively refreshes the chart with changes to one of its plots
[0274aea]573        """
574        self.plot(data=new_plot)
575
[3bdbfcc]576
[4992ff2]577class Plotter2D(QtWidgets.QDialog, Plotter2DWidget):
[3bdbfcc]578    """
579    Plotter widget implementation
580    """
[416fa8f]581    def __init__(self, parent=None, quickplot=False, dimension=2):
[4992ff2]582        QtWidgets.QDialog.__init__(self)
[cad617b]583        Plotter2DWidget.__init__(self, manager=parent, quickplot=quickplot, dimension=dimension)
[c4e5400]584        icon = QtGui.QIcon()
585        icon.addPixmap(QtGui.QPixmap(":/res/ball.ico"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
586        self.setWindowIcon(icon)
Note: See TracBrowser for help on using the repository browser.