Allow axis kwargs passthrough
parent
349040dbf0
commit
94b6f370a9
|
@ -862,6 +862,7 @@ class ChartPlotWidget(pg.PlotWidget):
|
||||||
def overlay_plotitem(
|
def overlay_plotitem(
|
||||||
self,
|
self,
|
||||||
name: str,
|
name: str,
|
||||||
|
axis_kwargs: dict = {},
|
||||||
|
|
||||||
) -> pg.PlotItem:
|
) -> pg.PlotItem:
|
||||||
# Custom viewbox impl
|
# Custom viewbox impl
|
||||||
|
@ -875,6 +876,7 @@ class ChartPlotWidget(pg.PlotWidget):
|
||||||
yaxis = PriceAxis(
|
yaxis = PriceAxis(
|
||||||
orientation='right',
|
orientation='right',
|
||||||
linkedsplits=self.linked,
|
linkedsplits=self.linked,
|
||||||
|
**axis_kwargs,
|
||||||
)
|
)
|
||||||
|
|
||||||
plotitem = pg.PlotItem(
|
plotitem = pg.PlotItem(
|
||||||
|
|
Loading…
Reference in New Issue