Simplify plot title by removing CAN ID

This commit is contained in:
2026-07-23 16:16:12 +02:00
parent 1e5506de50
commit 92ff701dab
+1 -1
View File
@@ -560,7 +560,7 @@ def render_vehicles(vehicle):
if getattr(sig, "skip_plot", False):
continue
unit_str = f" ({sig.unit})" if sig.unit else ""
title = f"{frame_def.can_id} - {sig.name}{unit_str}"
title = f"{sig.name}{unit_str}"
fig = vehicle_module.plot_signal(
decoded, sig.name, title=title, color=frame_def.color
)