From f7b800673b314742211490b2890749a7e83930e7 Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Fri, 27 Sep 2024 17:49:09 -0700 Subject: [PATCH] smaller legend in the report --- tools/longitudinal_maneuvers/generate_report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/longitudinal_maneuvers/generate_report.py b/tools/longitudinal_maneuvers/generate_report.py index a396e5112..eb8c13271 100755 --- a/tools/longitudinal_maneuvers/generate_report.py +++ b/tools/longitudinal_maneuvers/generate_report.py @@ -92,7 +92,7 @@ def report(platform, route, _description, CP, maneuvers): # TODO localizer accel ax[0].set_ylabel('Acceleration (m/s^2)') #ax[0].set_ylim(-6.5, 6.5) - ax[0].legend() + ax[0].legend(prop={'size': 30}) if target_cross_time is not None: ax[0].plot(target_cross_time, aTarget, marker='o', markersize=50, markeredgewidth=7, markeredgecolor='black', markerfacecolor='None')