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

(cherry picked from commit 03f23f43ec4f3686d3c43555ba8ab7b1774630a7)
This commit is contained in:
Alejandro Gallardo Escobar 2016-06-02 19:02:39 +02:00
parent a88fe29009
commit d75594ea49

View File

@ -726,7 +726,9 @@ function pch_vertical_graph ($graph_type, $index, $data, $width, $height,
break; break;
case 'transparent': case 'transparent':
$transparent = true; $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; break;
} }