本文整理匯總了PHP中graph::SetShadow方法的典型用法代碼示例。如果您正苦於以下問題:PHP graph::SetShadow方法的具體用法?PHP graph::SetShadow怎麽用?PHP graph::SetShadow使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類graph
的用法示例。
在下文中一共展示了graph::SetShadow方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: GerarGraficoBarra
function GerarGraficoBarra()
{
require_once "../biblioteca/jpgraph/jpgraph.php";
require_once "../biblioteca/jpgraph/jpgraph_bar.php";
$grafico = new graph($this->largura, $this->altura, "png");
/* Margem das partes principais do gráfico (dados), o que está
* fora da margem fica separado para as labels, títulos, etc
* Este valor ficará como padrão para todos os gráficos
*/
$grafico->img->SetMargin(40, 30, 20, 40);
$grafico->SetScale("textlin");
$grafico->SetShadow();
//Define Titulo e Subtitulo
$grafico->title->Set($this->titulo);
$grafico->subtitle->Set($this->subtitulo);
// pedir para mostrar os grides no fundo do gráfico,
// o ygrid é marcado como true por padrão
$grafico->ygrid->Show(true);
$grafico->xgrid->Show(true);
$gBarras = new BarPlot($this->dados_eixoY);
$gBarras->SetFillColor($this->cor_barra);
$gBarras->SetShadow($this->cor_sombra);
$gBarras->SetAbsWidth($this->largura_barra);
$gBarras->value->Show();
$gBarras->value->SetFormat('%d');
$gBarras->SetValuePos('center');
$gBarras->value->SetFont(FF_FONT1, FS_BOLD);
// título dos vértices
$grafico->yaxis->title->Set($this->label_eixoY);
$grafico->xaxis->title->Set($this->label_eixoX);
// título das barras
$grafico->xaxis->SetTickLabels($this->dados_eixoX);
$grafico->Add($gBarras);
$grafico->Stroke("imagens/graficos/" . $this->nome);
}