From 8a0cd31444ee1427c7c0fb94b39b2fe1e5dd4ced Mon Sep 17 00:00:00 2001 From: Alan Mitchell Date: Mon, 19 Dec 2016 19:08:58 -0900 Subject: [PATCH] Changed Hover Label in XY plot. --- bmsapp/reports/xyplot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bmsapp/reports/xyplot.py b/bmsapp/reports/xyplot.py index 8a3f0dc..049ae88 100644 --- a/bmsapp/reports/xyplot.py +++ b/bmsapp/reports/xyplot.py @@ -60,7 +60,7 @@ class XYplot(basechart.BaseChart): if len(df_all): # add a point name column to be used in the tooltip. - df_all['name'] = df_all.index.strftime('%Y-%m-%d %H:%M') + df_all['name'] = df_all.index.strftime('%a %m/%d/%y %H:%M') # add a column identifying whether point is in occupied or unoccupied period. resolution = self.occupied_resolution() -- GitLab