本文整理汇总了PHP中Axis::_getMinimum方法的典型用法代码示例。如果您正苦于以下问题:PHP Axis::_getMinimum方法的具体用法?PHP Axis::_getMinimum怎么用?PHP Axis::_getMinimum使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Axis
的用法示例。
在下文中一共展示了Axis::_getMinimum方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: while
/**
* Get the points on the secondary axis that the grid should "connect"
* @return Array The secondary data values that should mark the grid "end points"
* @access private
*/
function _getSecondaryAxisPoints()
{
if (is_a($this->_secondaryAxis, "Image_Graph_Axis_Multidimensional")) {
$secondaryValue = $this->_secondaryAxis->_getNextLabel();
while ($secondaryValue <= $this->_secondaryAxis->_getMaximum()) {
$secondaryAxisPoints[] = $secondaryValue;
$secondaryValue = $this->_primaryAxis->_getNextLabel($secondaryValue);
}
}
elseif (is_a($this->_secondaryAxis, "Image_Graph_Axis_Sequential")) {
$secondaryAxisPoints = array ($this->_secondaryAxis->_getMinimum() - 0.5, $this->_secondaryAxis->_getMaximum() - 0.5);
} else {
$secondaryAxisPoints = array ($this->_secondaryAxis->_getMinimum(), $this->_secondaryAxis->_getMaximum());
}
return $secondaryAxisPoints;
}