From eba92a8f201b7c76c269ddc10d5e6dce70f594ce Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Tue, 29 Mar 2022 13:15:59 -0400 Subject: [PATCH] Bump up resolution log scaling a mag --- piker/ui/_compression.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/piker/ui/_compression.py b/piker/ui/_compression.py index 9887138e..1fa9dcae 100644 --- a/piker/ui/_compression.py +++ b/piker/ui/_compression.py @@ -207,7 +207,7 @@ def ohlc_to_m4_line( # NOTE: found that a 16x px width brought greater # detail, likely due to dpi scaling? # px_width=px_width * 16, - 64 / (1 + math.log(uppx, 2)), + 128 / (1 + math.log(uppx, 2)), 1 ) )