本文整理汇总了PHP中BarPlot::SetCenter方法的典型用法代码示例。如果您正苦于以下问题:PHP BarPlot::SetCenter方法的具体用法?PHP BarPlot::SetCenter怎么用?PHP BarPlot::SetCenter使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BarPlot
的用法示例。
在下文中一共展示了BarPlot::SetCenter方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: date
}
}
}
// change format of x-labels
for ($i = 0; $i < sizeof($x_axis); $i++) {
$x_axis[$i] = date('M jS', strtotime($x_axis[$i]));
}
$graph = new Graph(800, 500);
$graph->img->SetMargin(40, 40, 40, 40);
$graph->img->SetAntiAliasing();
$graph->SetScale("textlin");
$graph->SetShadow();
$graph->title->Set("{$category} for {$username}");
$graph->xaxis->title->Set('Date');
//$graph->yaxis->title->Set('$category');
$graph->title->SetFont(FF_FONT1, FS_BOLD);
$graph->xaxis->title->SetFont(FF_FONT1, FS_BOLD);
$graph->yaxis->title->SetFont(FF_FONT1, FS_BOLD);
$graph->xaxis->SetTickLabels($x_axis);
// Use 20% "grace" to get slightly larger scale then min/max of
// data
$graph->yscale->SetGrace(0);
//$graph->x_axis->SetScale()
$p1 = new BarPlot($y_axis);
//$p1->mark->SetType(MARK_FILLEDCIRCLE);
//$p1->mark->SetFillColor("red");
//$p1->mark->SetWidth(4);
$p1->SetColor("blue");
$p1->SetCenter();
$graph->Add($p1);
$graph->Stroke();