def showMplChart(self, node=None):
     if node is None:
         node = self.selectedNode
     showChartMplWindow(node, maximized=showChartMaximized)
 def showAllCharts(self, sg=None):
     if sg is None:
         sg = self.selectedNode
     for ch in sg.charts.values():
         showChartMplWindow(ch, maximized=showChartMaximized)
 def showAllCharts(self, node=None):
     if node is None:
         node = self.selectedNode
     for chart in node.charts.values():
         showChartMplWindow(chart, maximized=showChartMaximized)
 def showMplChart(self, ch=None):
     if ch is None:
         ch = self.selectedNode
     showChartMplWindow(ch, maximized=showChartMaximized)