function __construct($aMax, $graph, $aClockwise)
 {
     parent::__construct(0, $aMax, 'x');
     $this->graph = $graph;
     $this->clockwise = $aClockwise;
 }
 function __construct($min, $max, $type = "y")
 {
     parent::__construct($min, $max, $type);
     $this->ticks = new LogTicks();
     $this->name = 'log';
 }