From 2de8209fa5c6b1ce940b8f1e9c952b89fe208585 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Fri, 23 Dec 2022 14:44:14 -0500 Subject: [PATCH] Don't set y-axis label colors to curve's, use the default from global scheme --- piker/ui/_chart.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/piker/ui/_chart.py b/piker/ui/_chart.py index 14921b3d..67120f5e 100644 --- a/piker/ui/_chart.py +++ b/piker/ui/_chart.py @@ -1231,7 +1231,8 @@ class ChartPlotWidget(pg.PlotWidget): # (we need something that avoids clutter on x-axis). axis.add_sticky( pi=pi, - bg_color=color, + fg_color='black', + # bg_color=color, digits=digits, )