__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ 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\Style\Font;
class AxisText extends Properties
{
/** @var ?int */
private $rotation;
/** @var Font */
private $font;
public function __construct()
{
parent::__construct();
$this->font = new Font();
$this->font->setSize(null, true);
}
public function setRotation(?int $rotation): self
{
$this->rotation = $rotation;
return $this;
}
public function getRotation(): ?int
{
return $this->rotation;
}
public function getFillColorObject(): ChartColor
{
$fillColor = $this->font->getChartColor();
if ($fillColor === null) {
$fillColor = new ChartColor();
$this->font->setChartColorFromObject($fillColor);
}
return $fillColor;
}
public function getFont(): Font
{
return $this->font;
}
public function setFont(Font $font): self
{
$this->font = $font;
return $this;
}
}
| 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 |
|