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