Changed text on graph axis to black.
authorChuck Scott <cscott@gaslightmedia.com>
Mon, 22 Aug 2016 19:46:35 +0000 (15:46 -0400)
committerChuck Scott <cscott@gaslightmedia.com>
Mon, 22 Aug 2016 19:46:35 +0000 (15:46 -0400)
models/admin/ajax/memberGraphs.php

index fb90272..e898ec9 100644 (file)
@@ -183,7 +183,8 @@ class GlmMembersAdmin_ajax_memberGraphs extends GlmDataMembers
             $graph = new PHPGraphLib(600,300);
             $graph->addData($data);
             // $graph->setTitle($graphTitle); - In this case the graph title is on the pop-up dialog box.
-            $graph->setTextColor("blue");
+            $graph->setTextColor("black");
+            $graph->setLineColor("blue");
             $graph->setBackgroundColor('245,245,245');
             $graph->setLine(true);
             $graph->setBars(false);