fix: change default colormap to plasma

This commit is contained in:
2025-04-23 17:52:22 +02:00
parent 3709cdc866
commit 074bbbc166
17 changed files with 32 additions and 34 deletions
+2 -2
View File
@@ -2196,7 +2196,7 @@ class MultiWaveform(RPCBase):
"""
@rpc_call
def plot(self, monitor: "str", color_palette: "str | None" = "magma"):
def plot(self, monitor: "str", color_palette: "str | None" = "plasma"):
"""
Create a plot for the given monitor.
Args:
@@ -2966,7 +2966,7 @@ class ScatterWaveform(RPCBase):
x_entry: "None | str" = None,
y_entry: "None | str" = None,
z_entry: "None | str" = None,
color_map: "str | None" = "magma",
color_map: "str | None" = "plasma",
label: "str | None" = None,
validate_bec: "bool" = True,
) -> "ScatterCurve":