本文整理汇总了PHP中Image_Graph_Marker::Image_Graph_Marker方法的典型用法代码示例。如果您正苦于以下问题:PHP Image_Graph_Marker::Image_Graph_Marker方法的具体用法?PHP Image_Graph_Marker::Image_Graph_Marker怎么用?PHP Image_Graph_Marker::Image_Graph_Marker使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Image_Graph_Marker
的用法示例。
在下文中一共展示了Image_Graph_Marker::Image_Graph_Marker方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
/**
* Create an pointing marker, ie a pin on a board
*
* @param int $deltaX The the X offset from the real 'data' point
* @param int $deltaY The the Y offset from the real 'data' point
* @param Marker $markerEnd The ending marker that represents 'the head of
* the pin'
*/
function Image_Graph_Marker_Pointing($deltaX, $deltaY, &$markerEnd)
{
parent::Image_Graph_Marker();
$this->_deltaX = $deltaX;
$this->_deltaY = $deltaY;
$this->_markerStart = null;
$this->_markerEnd =& $markerEnd;
}
示例2: array
/**
* Create a value marker, ie a box containing the value of the 'pointing
* data'
*
* @param int $useValue Defines which value to use from the dataset, i.e. the
* X or Y value
*/
function Image_Graph_Marker_Value($useValue = IMAGE_GRAPH_VALUE_X)
{
parent::Image_Graph_Marker();
$this->_padding = array('left' => 2, 'top' => 2, 'right' => 2, 'bottom' => 2);
$this->_useValue = $useValue;
$this->_fillStyle = 'white';
$this->_borderStyle = 'black';
}
示例3:
/**
* Create a value marker, ie a box containing the value of the 'pointing
* data'
*
* @param int $useValue Defines which value to use from the dataset, i.e. the
* X or Y value
*/
function Image_Graph_Marker_Value($useValue = IMAGE_GRAPH_VALUE_X)
{
parent::Image_Graph_Marker();
$this->_padding = 2;
$this->_useValue = $useValue;
$this->_fillStyle = 'white';
$this->_borderStyle = 'black';
}
示例4:
/**
* Create an icon marker
*
* @param string $filename The filename of the icon
* @param int $width The 'new' width of the icon if it is to be resized
* @param int $height The 'new' height of the icon if it is to be resized
*/
function Image_Graph_Marker_Icon($filename, $width = 0, $height = 0)
{
parent::Image_Graph_Marker();
$this->_filename = $filename;
}