From f1db24c8f6cbbff07781495b52228fa73ba359a1 Mon Sep 17 00:00:00 2001 From: Lan <ldam@passcal.nmt.edu> Date: Fri, 5 May 2023 14:21:30 -0600 Subject: [PATCH] make markersize=2 for multicolor dot. It was small before because there are a lot of data points which are hard to be regconized --- sohstationviewer/view/plotting/plotting_widget/plotting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sohstationviewer/view/plotting/plotting_widget/plotting.py b/sohstationviewer/view/plotting/plotting_widget/plotting.py index ec2ab8e8a..98a81bda9 100644 --- a/sohstationviewer/view/plotting/plotting_widget/plotting.py +++ b/sohstationviewer/view/plotting/plotting_widget/plotting.py @@ -96,7 +96,7 @@ class Plotting: x += points ax.plot(points, len(points) * [0], linestyle="", - marker='s', markersize=0.5, + marker='s', markersize=2, zorder=constants.Z_ORDER['DOT'], color=clr[c], picker=True, pickradius=3) prev_val = val -- GitLab