[Piwik-svn] r418 - trunk/modules/Visualization

svnmaster at piwik.org svnmaster at piwik.org
Fri Mar 28 03:12:30 CET 2008


Author: matt
Date: 2008-03-28 03:12:27 +0100 (Fri, 28 Mar 2008)
New Revision: 418

Modified:
   trunk/modules/Visualization/ChartPie.php
Log:
- fixing pie chart label size too small

Modified: trunk/modules/Visualization/ChartPie.php
===================================================================
--- trunk/modules/Visualization/ChartPie.php	2008-03-28 01:50:32 UTC (rev 417)
+++ trunk/modules/Visualization/ChartPie.php	2008-03-28 02:12:27 UTC (rev 418)
@@ -31,9 +31,10 @@
 	    	$label = $this->arrayLabel[$i];
 			$this->arrayLabel[$i] = (strlen($label) > 20 ? substr($label, 0, 20).'...' : $label);
 	    }
-	    
+	    $this->set_x_label_style( 12, $this->x_axis_colour, 0, 2, $this->bg_colour );
+		
 		//
-		$this->pie(60,'#505050','#142448', true);
+		$this->pie(60,'#505050','{font-size: 12px; color: #142448}', true);
 		//
 		// pass in two arrays, one of data, the other data labels
 		//



More information about the Piwik-svn mailing list