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


PHP BarPlot::SetValueFont方法代码示例

本文整理汇总了PHP中BarPlot::SetValueFont方法的典型用法代码示例。如果您正苦于以下问题:PHP BarPlot::SetValueFont方法的具体用法?PHP BarPlot::SetValueFont怎么用?PHP BarPlot::SetValueFont使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在BarPlot的用法示例。


在下文中一共展示了BarPlot::SetValueFont方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: BarPlot

$graph->img->SetMargin(60, 30, 20, 40);
$graph->yaxis->SetTitleMargin(45);
$graph->yaxis->scale->SetGrace(30);
$graph->SetShadow();
// Turn the tickmarks
$graph->xaxis->SetTickDirection(SIDE_DOWN);
$graph->yaxis->SetTickDirection(SIDE_LEFT);
// Create a bar pot
$bplot = new BarPlot($datay);
// Create targets for the image maps. One for each column
$targ = array("bar_clsmex1.php#1", "bar_clsmex1.php#2", "bar_clsmex1.php#3", "bar_clsmex1.php#4", "bar_clsmex1.php#5", "bar_clsmex1.php#6");
$alts = array("val=%d", "val=%d", "val=%d", "val=%d", "val=%d", "val=%d");
$bplot->SetCSIMTargets($targ, $alts);
$bplot->SetFillColor("orange");
// Use a shadow on the bar graphs (just use the default settings)
$bplot->SetShadow();
$bplot->SetValueFormat(" \$ %2.1f", 70);
$bplot->SetValueFont(FF_ARIAL, FS_NORMAL, 9);
$bplot->SetValueColor("blue");
$bplot->ShowValue();
$graph->Add($bplot);
$graph->title->Set("Image maps barex1");
$graph->xaxis->title->Set("X-title");
$graph->yaxis->title->Set("Y-title");
$graph->title->SetFont(FF_FONT1, FS_BOLD);
$graph->yaxis->title->SetFont(FF_FONT1, FS_BOLD);
$graph->xaxis->title->SetFont(FF_FONT1, FS_BOLD);
// Write the image to a file.
$graph->Stroke("auto");
echo $graph->GetHTMLImageMap("myimagemap");
echo "<img src=\"" . GenImgName() . "\" ISMAP USEMAP=\"#myimagemap\" border=0>";
开发者ID:BackupTheBerlios,项目名称:milaninegw-svn,代码行数:31,代码来源:bar_csimex1.php

示例2: BarPlot

         $plottable["Emails by Staff"] = $info["email_counts"]["developer"]["avg"];
         $plottable["Emails by Customers"] = $info["email_counts"]["customer"]["avg"];
         break;
     case 3:
         $plottable["Avg Time to Close"] = $info["time_stats"]["time_to_close"]["avg"] / (60 * 24);
         $plottable["Median Time to Close"] = $info["time_stats"]["time_to_close"]["median"] / (60 * 24);
         break;
     case 4:
         $plottable["Avg Time to First Response"] = $info["time_stats"]["time_to_first_response"]["avg"] / 60;
         $plottable["Median Time to First Response"] = $info["time_stats"]["time_to_first_response"]["median"] / 60;
         break;
 }
 // Create a bar pot
 $bplot = new BarPlot(array_values($plottable));
 $bplot->showValue(true);
 $bplot->SetValueFont(FF_FONT2, FS_NORMAL, 9);
 if (!empty($graph_types[$graph_id]["value_format"])) {
     $value_format = $graph_types[$graph_id]["value_format"];
 } else {
     $value_format = '%d';
 }
 $bplot->SetValueFormat($value_format, 90);
 $bplot->setLegend($info["title"]);
 if (isset($colors[$color_index])) {
     $color = $colors[$color_index];
 } else {
     $color_index = 0;
     $color = $colors[$color_index];
 }
 $color_index++;
 $bplot->SetFillColor($color);
开发者ID:juliogallardo1326,项目名称:proc,代码行数:31,代码来源:customer_stats_graph.php


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