Now the color of the text of the transparent area graphs will be some type of grey. Ticket #3736
(cherry picked from commit 03f23f43ec
)
This commit is contained in:
parent
a88fe29009
commit
d75594ea49
|
@ -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;
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue