本文整理汇总了PHP中PieGraph::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP PieGraph::__construct方法的具体用法?PHP PieGraph::__construct怎么用?PHP PieGraph::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PieGraph
的用法示例。
在下文中一共展示了PieGraph::__construct方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
function __construct($Titre = "", $NbColonnesLegende = GRAPH_NB_COLONNES_LEGENDE, $width = GRAPH_LARGEUR, $height = GRAPH_HAUTEUR, $cachedName = "", $timeout = 0, $inline = 1)
{
parent::__construct($width, $height, $cachedName, $timeout, $inline);
$this->SetColor("white");
$this->title->Set($Titre);
$this->title->SetFont(FF_TIMES, FS_BOLD, 12);
$this->title->SetColor("#404040");
// Mise en forme de la légende du graphe
$this->legend->SetAbsPos(0, 220, "left", "top");
// à 0px du bord gauche et à 220px du haut
$this->legend->SetFillColor("white");
// couleur de fond : blanc
$this->legend->SetColumns($NbColonnesLegende);
// nombre de colonnes par ligne
}