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