当前位置: 首页>>代码示例>>PHP>>正文


PHP BarPlot::SetCenter方法代码示例

本文整理汇总了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();
开发者ID:jwatphisit,项目名称:Web2,代码行数:31,代码来源:bar1.php


注:本文中的BarPlot::SetCenter方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。