Use static `L1Label._x_br_offset` as l1 label length

l1_compaction
Tyler Goodlet 2022-12-27 13:10:25 -05:00
parent a7a08aced9
commit 3fd394d693
1 changed files with 2 additions and 1 deletions

View File

@ -984,7 +984,8 @@ class ChartPlotWidget(pg.PlotWidget):
''' '''
# TODO: compute some sensible maximum value here # TODO: compute some sensible maximum value here
# and use a humanized scheme to limit to that length. # and use a humanized scheme to limit to that length.
l1_len = self._max_l1_line_len from ._l1 import L1Label
l1_len = abs(L1Label._x_br_offset)
ryaxis = self.getAxis('right') ryaxis = self.getAxis('right')
r_axis_x = ryaxis.pos().x() r_axis_x = ryaxis.pos().x()