chartpie.php

来自「一款可以和GOOGLE媲美的开源统计系统,运用AJAX.功能强大. 无色提示:」· PHP 代码 · 共 41 行

PHP
41
字号
<?php/** * Piwik - Open source web analytics *  * @link http://piwik.org * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later * @version $Id: ChartPie.php 459 2008-05-06 22:39:42Z matt $ *  * @package Piwik_Visualization */require_once "Visualization/Chart.php";/** *  * Customize the Pie chart style for the flash graph *  * @package Piwik_Visualization */class Piwik_Visualization_ChartPie extends Piwik_Visualization_Chart{	function customizeGraph()	{		parent::customizeGraph();				$this->prepareData();				    for($i = 0, $cnt = count($this->arrayLabel); $i < $cnt; $i++) 	    {	    	$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','{font-size: 12px; color: #142448}', true);		$this->pie_values( $this->arrayData, $this->arrayLabel );		$this->pie_slice_colours( array('#3C5A69','#679BB5','#695A3C','#B58E67','#969696') );				$this->set_tool_tip( '#x_label# <br>#val# ' );			}	}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?