本文整理匯總了PHP中Axis::setLabelText方法的典型用法代碼示例。如果您正苦於以下問題:PHP Axis::setLabelText方法的具體用法?PHP Axis::setLabelText怎麽用?PHP Axis::setLabelText使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Axis
的用法示例。
在下文中一共展示了Axis::setLabelText方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: reduce
/**
* Reduce number of values in the plot
*
* @param int $number Reduce number of values to $number
*/
public function reduce($number)
{
$count = count($this->datay);
$ratio = ceil($count / $number);
if ($ratio > 1) {
$tmpy = $this->datay;
$datay = array();
$datax = array();
$cbLabel = $this->xAxis->label->getCallbackFunction();
for ($i = 0; $i < $count; $i += $ratio) {
$slice = array_slice($tmpy, $i, $ratio);
$datay[] = array_sum($slice) / count($slice);
// Reduce data on X axis if needed
if ($cbLabel !== NULL) {
$datax[] = $cbLabel($i + round($ratio / 2));
}
}
$this->setValues($datay);
if ($cbLabel !== NULL) {
$this->xAxis->setLabelText($datax);
}
}
}