Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/hopeinstoughton_www/vendor/microsoft/microsoft-graph/src/Model/ |
Upload File : |
<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* WorkbookChartAxes File
* PHP version 7
*
* @category Library
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
namespace Microsoft\Graph\Model;
/**
* WorkbookChartAxes class
*
* @category Model
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
class WorkbookChartAxes extends Entity
{
/**
* Gets the categoryAxis
* Represents the category axis in a chart. Read-only.
*
* @return WorkbookChartAxis|null The categoryAxis
*/
public function getCategoryAxis()
{
if (array_key_exists("categoryAxis", $this->_propDict)) {
if (is_a($this->_propDict["categoryAxis"], "\Microsoft\Graph\Model\WorkbookChartAxis") || is_null($this->_propDict["categoryAxis"])) {
return $this->_propDict["categoryAxis"];
} else {
$this->_propDict["categoryAxis"] = new WorkbookChartAxis($this->_propDict["categoryAxis"]);
return $this->_propDict["categoryAxis"];
}
}
return null;
}
/**
* Sets the categoryAxis
* Represents the category axis in a chart. Read-only.
*
* @param WorkbookChartAxis $val The categoryAxis
*
* @return WorkbookChartAxes
*/
public function setCategoryAxis($val)
{
$this->_propDict["categoryAxis"] = $val;
return $this;
}
/**
* Gets the seriesAxis
* Represents the series axis of a 3-dimensional chart. Read-only.
*
* @return WorkbookChartAxis|null The seriesAxis
*/
public function getSeriesAxis()
{
if (array_key_exists("seriesAxis", $this->_propDict)) {
if (is_a($this->_propDict["seriesAxis"], "\Microsoft\Graph\Model\WorkbookChartAxis") || is_null($this->_propDict["seriesAxis"])) {
return $this->_propDict["seriesAxis"];
} else {
$this->_propDict["seriesAxis"] = new WorkbookChartAxis($this->_propDict["seriesAxis"]);
return $this->_propDict["seriesAxis"];
}
}
return null;
}
/**
* Sets the seriesAxis
* Represents the series axis of a 3-dimensional chart. Read-only.
*
* @param WorkbookChartAxis $val The seriesAxis
*
* @return WorkbookChartAxes
*/
public function setSeriesAxis($val)
{
$this->_propDict["seriesAxis"] = $val;
return $this;
}
/**
* Gets the valueAxis
* Represents the value axis in an axis. Read-only.
*
* @return WorkbookChartAxis|null The valueAxis
*/
public function getValueAxis()
{
if (array_key_exists("valueAxis", $this->_propDict)) {
if (is_a($this->_propDict["valueAxis"], "\Microsoft\Graph\Model\WorkbookChartAxis") || is_null($this->_propDict["valueAxis"])) {
return $this->_propDict["valueAxis"];
} else {
$this->_propDict["valueAxis"] = new WorkbookChartAxis($this->_propDict["valueAxis"]);
return $this->_propDict["valueAxis"];
}
}
return null;
}
/**
* Sets the valueAxis
* Represents the value axis in an axis. Read-only.
*
* @param WorkbookChartAxis $val The valueAxis
*
* @return WorkbookChartAxes
*/
public function setValueAxis($val)
{
$this->_propDict["valueAxis"] = $val;
return $this;
}
}