From acf43db1ddb586353469ae752038b6dbd5e8cf46 Mon Sep 17 00:00:00 2001 From: Eric Hiller Date: Thu, 1 Feb 2024 08:39:04 -0600 Subject: [PATCH] Update PlotGen.cs --- src/PlotGitHubAction/PlotGen.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/PlotGitHubAction/PlotGen.cs b/src/PlotGitHubAction/PlotGen.cs index 240345b..2512ade 100644 --- a/src/PlotGitHubAction/PlotGen.cs +++ b/src/PlotGitHubAction/PlotGen.cs @@ -124,8 +124,8 @@ private static void createPlot( string jsonString, string plotDefinitionsDir ) { plt.SetAxisLimits( bottom: 0 ); Log.Debug( $"YAxis min={plt.YAxis.Min}" ); Log.Debug( $"LeftAxis min={plt.LeftAxis.Min}" ); - plt.Margins( horizontal: 0.05D, vertical: 0.0, apply: true ); // URGENT: restore? - // plt.Margins( 0, 0 ); // URGENT: restore? + // plt.Margins( horizontal: 0.05D, vertical: 0.0, apply: true ); // URGENT: restore? + plt.Margins( 0, 0 ); // URGENT: restore? foreach ( var axis in plt.XAxes ){ axis.FrameLineStyle.Color = new Color(0, 0, 0, 0); }