Updates the trace dictionary of the figure.
(self)
| 277 | - value: trace object |
| 278 | """ |
| 279 | def updateTracedict(self): |
| 280 | """ |
| 281 | Updates the trace dictionary of the figure. |
| 282 | """ |
| 283 | self.traceDict = {} |
| 284 | for ax in self.axes: |
| 285 | for axrow in ax: |
| 286 | for trc in axrow.traces: |
| 287 | self.traceDict[trc.label] = trc |
| 288 | |
| 289 | def plot(self): |
| 290 | """ |