From 7d60fcfbb0fd024a6bbd1a5736478a69ebd7956a Mon Sep 17 00:00:00 2001 From: jitendracandela Date: Tue, 29 Jun 2021 20:09:15 +0530 Subject: [PATCH] changes in lf bar graph(value shows on the top of the bar) --- py-scripts/lf_graph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-scripts/lf_graph.py b/py-scripts/lf_graph.py index 61aafe13..bb5ce093 100755 --- a/py-scripts/lf_graph.py +++ b/py-scripts/lf_graph.py @@ -102,7 +102,7 @@ class lf_bar_graph(): if isinstance(self.xaxis_categories[0], int): plt.xticks(np.arange(0, len(self.xaxis_categories), step=self.xaxis_step)) else: - plt.xticks(np.arange(0, len(self.xaxis_categories)),self.xaxis_categories) + plt.xticks(np.arange(0, len(self.xaxis_categories)), self.xaxis_categories) plt.legend()