From a2592f8d7b2f9e13cb1e35927ff1e5ada1c8c64f Mon Sep 17 00:00:00 2001 From: Matthias Jentsch Date: Wed, 19 Nov 2014 11:23:28 +0100 Subject: [PATCH] Fix alert summary chart colors --- .../application/controllers/AlertsummaryController.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/monitoring/application/controllers/AlertsummaryController.php b/modules/monitoring/application/controllers/AlertsummaryController.php index 6d56c8d22..8fd70627d 100644 --- a/modules/monitoring/application/controllers/AlertsummaryController.php +++ b/modules/monitoring/application/controllers/AlertsummaryController.php @@ -433,7 +433,7 @@ class Monitoring_AlertsummaryController extends Controller $gridChart->drawBars( array( 'label' => $this->translate('Notifications'), - 'color' => 'blue', + 'color' => '#049baf', 'data' => $notifications, 'showPoints' => true ) @@ -442,7 +442,7 @@ class Monitoring_AlertsummaryController extends Controller $gridChart->drawLines( array( 'label' => $this->translate('Avg (min)'), - 'color' => 'orange', + 'color' => '#ffaa44', 'data' => $dAvg, 'showPoints' => true ) @@ -451,7 +451,7 @@ class Monitoring_AlertsummaryController extends Controller $gridChart->drawLines( array( 'label' => $this->translate('Max (min)'), - 'color' => 'red', + 'color' => '#ff5566', 'data' => $dMax, 'showPoints' => true ) @@ -478,7 +478,7 @@ class Monitoring_AlertsummaryController extends Controller $gridChart->drawBars( array( 'label' => $this->translate('Notifications'), - 'color' => 'green', + 'color' => '#049baf', 'data' => $this->notificationData, 'showPoints' => true ) @@ -487,7 +487,7 @@ class Monitoring_AlertsummaryController extends Controller $gridChart->drawLines( array( 'label' => $this->translate('Defects'), - 'color' => 'red', + 'color' => '#ff5566', 'data' => $this->problemData, 'showPoints' => true )