Ejemplo n.º 1
0
 /**
  * Constructor
  * 
  * @param array $options Default option array
  * @return void
  * @ignore
  */
 public function __construct(array $options = array())
 {
     $this->properties['portraitSize'] = 0.2;
     $this->properties['landscapeSize'] = 0.1;
     $this->properties['symbolSize'] = 14;
     $this->properties['padding'] = 1;
     $this->properties['minimumSymbolSize'] = 0.05;
     $this->properties['spacing'] = 2;
     parent::__construct($options);
 }
Ejemplo n.º 2
0
 /**
  * Constructor
  * 
  * @param array $options Default option array
  * @return void
  * @ignore
  */
 public function __construct(array $options = array())
 {
     $this->properties['maxHeight'] = 0.1;
     parent::__construct($options);
 }
 /**
  * Constructor
  * 
  * @param array $options Default option array
  * @return void
  * @ignore
  */
 public function __construct(array $options = array())
 {
     $this->properties['image'] = false;
     $this->properties['repeat'] = ezcGraph::NO_REPEAT;
     parent::__construct($options);
 }
Ejemplo n.º 4
0
 /**
  * Constructor
  * 
  * @param array $options Default option array
  * @return void
  * @ignore
  */
 public function __construct(array $options = array())
 {
     $this->properties['nullPosition'] = false;
     $this->properties['axisSpace'] = 0.1;
     $this->properties['outerAxisSpace'] = null;
     $this->properties['majorGrid'] = false;
     $this->properties['minorGrid'] = false;
     $this->properties['majorStep'] = null;
     $this->properties['minorStep'] = null;
     $this->properties['formatString'] = '%s';
     $this->properties['label'] = false;
     $this->properties['labelSize'] = 14;
     $this->properties['labelMargin'] = 2;
     $this->properties['minArrowHeadSize'] = 4;
     $this->properties['maxArrowHeadSize'] = 8;
     $this->properties['labelCallback'] = null;
     $this->properties['chartPosition'] = null;
     $this->properties['initialized'] = false;
     $this->properties['labelRotation'] = 0.0;
     parent::__construct($options);
     if (!isset($this->axisLabelRenderer)) {
         $this->axisLabelRenderer = new ezcGraphAxisExactLabelRenderer();
     }
 }