Fix alert summary chart colors
This commit is contained in:
parent
2c143ff348
commit
a2592f8d7b
|
@ -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
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue