Fix alert summary chart colors

This commit is contained in:
Matthias Jentsch 2014-11-19 11:23:28 +01:00
parent 2c143ff348
commit a2592f8d7b
1 changed files with 5 additions and 5 deletions

View File

@ -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
)