本文整理汇总了PHP中Axis::setTickStyle方法的典型用法代码示例。如果您正苦于以下问题:PHP Axis::setTickStyle方法的具体用法?PHP Axis::setTickStyle怎么用?PHP Axis::setTickStyle使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Axis
的用法示例。
在下文中一共展示了Axis::setTickStyle方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: awMathPlot
/**
* Build the plot
*
* @param int $xMin Minimum X value
* @param int $xMax Maximum X value
* @param int $yMax Maximum Y value
* @param int $yMin Minimum Y value
*/
function awMathPlot($xMin, $xMax, $yMax, $yMin)
{
parent::awComponent();
$this->setPadding(8, 8, 8, 8);
$this->grid = new awGrid();
// Hide grid by default
$this->grid->hide(TRUE);
// Set extremum
$this->extremum = new awSide($xMin, $xMax, $yMax, $yMin);
// Create axis
$this->xAxis = new awAxis();
$this->xAxis->setTickStyle(TICK_IN);
$this->xAxis->label->hideValue(0);
$this->initAxis($this->xAxis);
$this->yAxis = new awAxis();
$this->yAxis->setTickStyle(TICK_IN);
$this->yAxis->label->hideValue(0);
$this->initAxis($this->yAxis);
}
示例2: awPlotAxis
/**
* Build the group of axis
*/
function awPlotAxis()
{
$this->left = new awAxis();
$this->left->auto(TRUE);
$this->left->label->setAlign(LABEL_RIGHT);
$this->left->label->move(-6, 0);
$this->yAxis($this->left);
$this->left->setTickStyle(TICK_OUT);
$this->left->title->move(-25, 0);
$this->right = new awAxis();
$this->right->auto(TRUE);
$this->right->label->setAlign(LABEL_LEFT);
$this->right->label->move(6, 0);
$this->yAxis($this->right);
$this->right->setTickStyle(TICK_IN);
$this->right->title->move(25, 0);
$this->top = new awAxis();
$this->top->label->setAlign(NULL, LABEL_TOP);
$this->top->label->move(0, -3);
$this->xAxis($this->top);
$this->top->setTickStyle(TICK_OUT);
$this->top->title->move(0, -25);
$this->bottom = new awAxis();
$this->bottom->label->setAlign(NULL, LABEL_BOTTOM);
$this->bottom->label->move(0, 3);
$this->xAxis($this->bottom);
$this->bottom->setTickStyle(TICK_IN);
$this->bottom->title->move(0, 25);
}
示例3: __construct
/**
* Build the group of axis
*/
public function __construct()
{
$this->left = new awAxis();
$this->left->auto(TRUE);
$this->left->label->setAlign(awLabel::RIGHT);
$this->left->label->move(-6, 0);
$this->yAxis($this->left);
$this->left->setTickStyle(awTick::OUT);
$this->left->title->move(-25, 0);
$this->right = new awAxis();
$this->right->auto(TRUE);
$this->right->label->setAlign(awLabel::LEFT);
$this->right->label->move(6, 0);
$this->yAxis($this->right);
$this->right->setTickStyle(awTick::IN);
$this->right->title->move(25, 0);
$this->top = new awAxis();
$this->top->label->setAlign(NULL, awLabel::TOP);
$this->top->label->move(0, -3);
$this->xAxis($this->top);
$this->top->setTickStyle(awTick::OUT);
$this->top->title->move(0, -25);
$this->bottom = new awAxis();
$this->bottom->label->setAlign(NULL, awLabel::BOTTOM);
$this->bottom->label->move(0, 3);
$this->xAxis($this->bottom);
$this->bottom->setTickStyle(awTick::IN);
$this->bottom->title->move(0, 25);
}
示例4: __construct
/**
* Build the plot
*
* @param int $xMin Minimum X value
* @param int $xMax Maximum X value
* @param int $yMax Maximum Y value
* @param int $yMin Minimum Y value
*/
public function __construct($xMin, $xMax, $yMax, $yMin)
{
parent::__construct();
$this->setPadding(8, 8, 8, 8);
$this->grid = new awGrid();
// Hide grid by default
$this->grid->hide(TRUE);
// Set extremum
$this->extremum = new awSide($xMin, $xMax, $yMax, $yMin);
// Create axis
$this->xAxis = new awAxis();
$this->xAxis->setTickStyle(awTick::IN);
$this->xAxis->label->hideValue(0);
$this->initAxis($this->xAxis);
$this->yAxis = new awAxis();
$this->yAxis->setTickStyle(awTick::IN);
$this->yAxis->label->hideValue(0);
$this->initAxis($this->yAxis);
}