jpgraph_gantt.php (jpgraph-4.3.4) | : | jpgraph_gantt.php (jpgraph-4.3.5) | ||
---|---|---|---|---|
skipping to change at line 3612 | skipping to change at line 3612 | |||
private $iStartRow = -1, $iEndRow = -1; | private $iStartRow = -1, $iEndRow = -1; | |||
//--------------- | //--------------- | |||
// CONSTRUCTOR | // CONSTRUCTOR | |||
function __construct($aDate,$aTitle="",$aColor="darkred",$aWeight=2,$aStyle= "solid") { | function __construct($aDate,$aTitle="",$aColor="darkred",$aWeight=2,$aStyle= "solid") { | |||
GanttPlotObject::__construct(); | GanttPlotObject::__construct(); | |||
$this->iLine = new LineProperty(); | $this->iLine = new LineProperty(); | |||
$this->iLine->SetColor($aColor); | $this->iLine->SetColor($aColor); | |||
$this->iLine->SetWeight($aWeight); | $this->iLine->SetWeight($aWeight); | |||
$this->iLine->SetStyle($aStyle); | $this->iLine->SetStyle($aStyle); | |||
$this->iLine->Show(); | ||||
$this->iStart = $aDate; | $this->iStart = $aDate; | |||
$this->title = new TextPropertyBelow(); | $this->title = new TextPropertyBelow(); | |||
$this->title->Set($aTitle); | $this->title->Set($aTitle); | |||
} | } | |||
//--------------- | //--------------- | |||
// PUBLIC METHODS | // PUBLIC METHODS | |||
// Set start and end rows for the VLine. By default the entire heigh of the | // Set start and end rows for the VLine. By default the entire heigh of the | |||
// Gantt chart is used | // Gantt chart is used | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 1 lines changed or added |