@@ -162,7 +162,7 @@ discard block |
||
162 | 162 | /** |
163 | 163 | * Create a new Chart. |
164 | 164 | * |
165 | - * @param mixed $name |
|
165 | + * @param string $name |
|
166 | 166 | * @param mixed $plotVisibleOnly |
167 | 167 | * @param mixed $displayBlanksAs |
168 | 168 | */ |
@@ -520,6 +520,9 @@ discard block |
||
520 | 520 | ]; |
521 | 521 | } |
522 | 522 | |
523 | + /** |
|
524 | + * @param integer $xOffset |
|
525 | + */ |
|
523 | 526 | public function setTopLeftXOffset($xOffset) |
524 | 527 | { |
525 | 528 | $this->topLeftXOffset = $xOffset; |
@@ -532,6 +535,9 @@ discard block |
||
532 | 535 | return $this->topLeftXOffset; |
533 | 536 | } |
534 | 537 | |
538 | + /** |
|
539 | + * @param integer $yOffset |
|
540 | + */ |
|
535 | 541 | public function setTopLeftYOffset($yOffset) |
536 | 542 | { |
537 | 543 | $this->topLeftYOffset = $yOffset; |
@@ -631,6 +637,9 @@ discard block |
||
631 | 637 | ]; |
632 | 638 | } |
633 | 639 | |
640 | + /** |
|
641 | + * @param integer $xOffset |
|
642 | + */ |
|
634 | 643 | public function setBottomRightXOffset($xOffset) |
635 | 644 | { |
636 | 645 | $this->bottomRightXOffset = $xOffset; |
@@ -643,6 +652,9 @@ discard block |
||
643 | 652 | return $this->bottomRightXOffset; |
644 | 653 | } |
645 | 654 | |
655 | + /** |
|
656 | + * @param integer $yOffset |
|
657 | + */ |
|
646 | 658 | public function setBottomRightYOffset($yOffset) |
647 | 659 | { |
648 | 660 | $this->bottomRightYOffset = $yOffset; |
@@ -662,6 +674,9 @@ discard block |
||
662 | 674 | } |
663 | 675 | } |
664 | 676 | |
677 | + /** |
|
678 | + * @param string $outputDestination |
|
679 | + */ |
|
665 | 680 | public function render($outputDestination = null) |
666 | 681 | { |
667 | 682 | $libraryName = Settings::getChartRendererName(); |