diff --git a/distributed/dashboard/components/shared.py b/distributed/dashboard/components/shared.py index b98549239b..350f651c0e 100644 --- a/distributed/dashboard/components/shared.py +++ b/distributed/dashboard/components/shared.py @@ -225,7 +225,12 @@ def cb(attr, old, new): ) self.ts_plot.line("time", "count", source=self.ts_source) self.ts_plot.circle( - "time", "count", source=self.ts_source, color=None, selection_color="orange" + "time", + "count", + source=self.ts_source, + color=None, + selection_color="orange", + radius=1, ) self.ts_plot.yaxis.visible = False self.ts_plot.grid.visible = False @@ -373,7 +378,12 @@ def cb(attr, old, new): ) self.ts_plot.line("time", "count", source=self.ts_source) self.ts_plot.circle( - "time", "count", source=self.ts_source, color=None, selection_color="orange" + "time", + "count", + source=self.ts_source, + color=None, + selection_color="orange", + radius=1, ) self.ts_plot.yaxis.visible = False self.ts_plot.grid.visible = False