2011-04-18 Miguel de Dios <miguel.dedios@artica.es>

* include/graphs/pChart/pDraw.class.php: changed for show the some dark
	border with same color of area when the data config of graph haven't this
	values.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4243 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2011-04-18 16:29:01 +00:00
parent ccdcc7b6e8
commit 8dcd5ab2bf
2 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2011-04-18 Miguel de Dios <miguel.dedios@artica.es>
* include/graphs/pChart/pDraw.class.php: changed for show the some dark
border with same color of area when the data config of graph haven't this
values.
2011-04-18 Javier Lanz <javier.lanz@artica.es>
* include/functions_filemanager.php: Added a 'base64_encode' to deal with

View File

@ -3703,15 +3703,15 @@
if (isset($Serie["Color"]["BorderR"]))
$BorderR = $Serie["Color"]["BorderR"];
else
$BorderR = $R;
$BorderR = $R / 1.5; //Set the same color for border, some dark.
if (isset($Serie["Color"]["BorderG"]))
$BorderG = $Serie["Color"]["BorderG"];
else
$BorderG = $G;
$BorderG = $G / 1.5; //Set the same color for border, some dark.
if (isset($Serie["Color"]["BorderB"]))
$BorderB = $Serie["Color"]["BorderB"];
else
$BorderB = $B;
$BorderB = $B / 1.5; //Set the same color for border, some dark.
$Alpha = $Serie["Color"]["Alpha"];
$Ticks = $Serie["Ticks"];
if ( $DisplayColor == DISPLAY_AUTO ) { $DisplayR = $R; $DisplayG = $G; $DisplayB = $B; }