From 8221677b27b5dc8abdb8bec0c0a1239090edfa9b Mon Sep 17 00:00:00 2001
From: tomrink <rink@ssec.wisc.edu>
Date: Mon, 14 Dec 2020 11:46:33 -0600
Subject: [PATCH] snapshot...

---
 modules/util/line_plot.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/modules/util/line_plot.py b/modules/util/line_plot.py
index cdcdd5c8..247da725 100644
--- a/modules/util/line_plot.py
+++ b/modules/util/line_plot.py
@@ -5,7 +5,7 @@ import matplotlib.pyplot as plt
 barWidth = 0.10
 
 
-def do_plot(x_values, y_values, line_labels, colors, x_axis_label=None, y_axis_label=None, invert=False, flip=False):
+def do_plot(x_values, y_values, line_labels, colors, x_axis_label=None, y_axis_label=None, title=None, invert=False, flip=False):
     num_lines = len(y_values)
 
     for k in range(num_lines):
@@ -20,6 +20,9 @@ def do_plot(x_values, y_values, line_labels, colors, x_axis_label=None, y_axis_l
     if y_axis_label is not None:
         plt.ylabel(y_axis_label, fontweight='bold')
 
+    if title is not None:
+        plt.title(title, fontweight='bold')
+
     if invert:
         plt.gca().invert_yaxis()
 
-- 
GitLab