|
@@ 1389-1392 (lines=4) @@
|
| 1386 |
|
|
| 1387 |
|
function DrawPlotBorder() { |
| 1388 |
|
switch ($this->plot_border_type) { |
| 1389 |
|
case "left" : |
| 1390 |
|
ImageLine($this->img, $this->plot_area[0],$this->ytr($this->plot_min_y), |
| 1391 |
|
$this->plot_area[0],$this->ytr($this->plot_max_y),$this->ndx_grid_color); |
| 1392 |
|
break; |
| 1393 |
|
case "none": |
| 1394 |
|
//Draw No Border |
| 1395 |
|
break; |
|
@@ 1396-1399 (lines=4) @@
|
| 1393 |
|
case "none": |
| 1394 |
|
//Draw No Border |
| 1395 |
|
break; |
| 1396 |
|
default: |
| 1397 |
|
ImageRectangle($this->img, $this->plot_area[0],$this->ytr($this->plot_min_y), |
| 1398 |
|
$this->plot_area[2],$this->ytr($this->plot_max_y),$this->ndx_grid_color); |
| 1399 |
|
break; |
| 1400 |
|
} |
| 1401 |
|
$this->DrawYAxis(); |
| 1402 |
|
$this->DrawXAxis(); |