本文整理汇总了PHP中BarPlot::showValue方法的典型用法代码示例。如果您正苦于以下问题:PHP BarPlot::showValue方法的具体用法?PHP BarPlot::showValue怎么用?PHP BarPlot::showValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BarPlot
的用法示例。
在下文中一共展示了BarPlot::showValue方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: BarPlot
$plottable["Issues"] = $info["issue_counts"]["avg"];
$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++;