From 2a050c2b719996dd438af171e34e64b2317686bf Mon Sep 17 00:00:00 2001 From: Joshua Seigler Date: Tue, 7 Mar 2017 02:29:12 -0500 Subject: [PATCH] fix: improve time labels --- src/NeatCharts/NeatChart.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NeatCharts/NeatChart.php b/src/NeatCharts/NeatChart.php index bc23209..dec61fa 100644 --- a/src/NeatCharts/NeatChart.php +++ b/src/NeatCharts/NeatChart.php @@ -137,7 +137,7 @@ namespace NeatCharts { if ($this->options['xAxisEnabled']) { $timeIntervals = [ 'minutes' => [60, 'g:ia'], - 'hours' => [60 * 60, 'ga'], + 'hours' => [60 * 60, 'D ga'], 'days' => [24 * 60 * 60, 'M j'], 'years' => [365 * 24 * 60 * 60, 'Y'] ];