Changeset 97673 in vbox for trunk/src/VBox/ValidationKit/testmanager/webui/wuihlpgraphmatplotlib.py
- Timestamp:
- Nov 24, 2022 11:46:15 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/webui/wuihlpgraphmatplotlib.py
r96407 r97673 127 127 # Extract/structure the required data. 128 128 # 129 aoSeries = list();129 aoSeries = []; 130 130 for j in range(len(aoTable[1].aoValues)): 131 aoSeries.append( list());132 asNames = list();131 aoSeries.append([]); 132 asNames = []; 133 133 oXRange = numpy_arange(self._oData.getGroupCount()); 134 134 fpMin = self.fpMin; … … 156 156 oSubPlot = oFigure.add_subplot(1, 1, 1); 157 157 158 aoBars = list();158 aoBars = []; 159 159 for i, _ in enumerate(aoSeries): 160 160 sColor = self.calcSeriesColor(i);
Note:
See TracChangeset
for help on using the changeset viewer.