Now the color of the text of the transparent area graphs will be some type of grey. Ticket #3736

This commit is contained in:
Alejandro Gallardo Escobar 2016-06-02 19:02:39 +02:00
parent a15d45fb30
commit 03f23f43ec
1 changed files with 3 additions and 1 deletions

View File

@ -726,7 +726,9 @@ function pch_vertical_graph ($graph_type, $index, $data, $width, $height,
break;
case 'transparent':
$transparent = true;
$fontColor = array('R' => 0, 'G' => 0, 'B' => 0);
// $fontColor = array('R' => 0, 'G' => 0, 'B' => 0);
// Now the color of the text will be grey
$fontColor = array('R' => 200, 'G' => 200, 'B' => 200);
break;
}