コード例 #1
0
ファイル: numeric.php プロジェクト: mediasadc/alba
 /**
  * Constructor
  * 
  * @param array $options Default option array
  * @return void
  * @ignore
  */
 public function __construct(array $options = array())
 {
     $this->properties['min'] = null;
     $this->properties['max'] = null;
     $this->properties['minValue'] = null;
     $this->properties['maxValue'] = null;
     parent::__construct($options);
 }
コード例 #2
0
ファイル: date.php プロジェクト: mediasadc/alba
 /**
  * Constructor
  * 
  * @param array $options Default option array
  * @return void
  * @ignore
  */
 public function __construct(array $options = array())
 {
     $this->properties['startDate'] = false;
     $this->properties['endDate'] = false;
     $this->properties['interval'] = false;
     $this->properties['dateFormat'] = false;
     parent::__construct($options);
 }
コード例 #3
0
 /**
  * Constructor
  * 
  * @param array $options Default option array
  * @return void
  * @ignore
  */
 public function __construct(array $options = array())
 {
     $this->properties['min'] = null;
     $this->properties['max'] = null;
     $this->properties['base'] = 10;
     $this->properties['logarithmicalFormatString'] = '%1$d^%2$d';
     $this->properties['minValue'] = null;
     $this->properties['maxValue'] = null;
     parent::__construct($options);
 }
コード例 #4
0
 /**
  * Constructor
  * 
  * @param array $options Default option array
  * @return void
  * @ignore
  */
 public function __construct(array $options = array())
 {
     $this->properties['labelCount'] = null;
     $this->axisLabelRenderer = new ezcGraphAxisCenteredLabelRenderer();
     parent::__construct($options);
 }