public function __construct($aMax, $graph, $aClockwise = false)
 {
     parent::__construct(0, $aMax, 'x');
     $this->graph = $graph;
     $this->ticks->SetLabelLogType(LOGLABELS_MAGNITUDE);
     $this->clockwise = $aClockwise;
 }
Exemple #2
0
 function PolarLogScale($aMax = 1, &$graph)
 {
     parent::LogScale(0, $aMax, 'x');
     $this->graph =& $graph;
     $this->ticks->SetLabelLogType(LOGLABELS_MAGNITUDE);
 }