Better bg color, tweak margins.

bar_select
Tyler Goodlet 2020-08-31 17:18:35 -04:00
parent 17d205f773
commit f1b72dfd6b
1 changed files with 8 additions and 6 deletions

View File

@ -30,7 +30,7 @@ from .. import fsp
log = get_logger(__name__) log = get_logger(__name__)
# margins # margins
CHART_MARGINS = (0, 0, 10, 3) CHART_MARGINS = (0, 0, 5, 3)
class ChartSpace(QtGui.QWidget): class ChartSpace(QtGui.QWidget):
@ -43,7 +43,7 @@ class ChartSpace(QtGui.QWidget):
self.v_layout = QtGui.QVBoxLayout(self) self.v_layout = QtGui.QVBoxLayout(self)
self.v_layout.setContentsMargins(0, 0, 0, 0) self.v_layout.setContentsMargins(0, 0, 0, 0)
self.toolbar_layout = QtGui.QHBoxLayout() self.toolbar_layout = QtGui.QHBoxLayout()
self.toolbar_layout.setContentsMargins(10, 10, 15, 0) self.toolbar_layout.setContentsMargins(5, 5, 10, 0)
self.h_layout = QtGui.QHBoxLayout() self.h_layout = QtGui.QHBoxLayout()
# self.init_timeframes_ui() # self.init_timeframes_ui()
@ -275,13 +275,15 @@ class ChartPlotWidget(pg.PlotWidget):
# the data view we generate graphics from # the data view we generate graphics from
array: np.ndarray, array: np.ndarray,
**kwargs, **kwargs,
# parent=None,
# background='default',
# plotItem=None,
): ):
"""Configure chart display settings. """Configure chart display settings.
""" """
super().__init__(**kwargs) super().__init__(
background=hcolor('papas_special'),
# parent=None,
# plotItem=None,
**kwargs
)
self._array = array # readonly view of data self._array = array # readonly view of data
self._graphics = {} # registry of underlying graphics self._graphics = {} # registry of underlying graphics
self._labels = {} # registry of underlying graphics self._labels = {} # registry of underlying graphics