123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- <?php
- /*
- * Copyright 2014 Google Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not
- * use this file except in compliance with the License. You may obtain a copy of
- * the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- * License for the specific language governing permissions and limitations under
- * the License.
- */
-
- class Google_Service_Sheets_BasicChartSpec extends Google_Collection
- {
- protected $collection_key = 'series';
- protected $axisType = 'Google_Service_Sheets_BasicChartAxis';
- protected $axisDataType = 'array';
- public $chartType;
- public $compareMode;
- protected $domainsType = 'Google_Service_Sheets_BasicChartDomain';
- protected $domainsDataType = 'array';
- public $headerCount;
- public $interpolateNulls;
- public $legendPosition;
- public $lineSmoothing;
- protected $seriesType = 'Google_Service_Sheets_BasicChartSeries';
- protected $seriesDataType = 'array';
- public $stackedType;
- public $threeDimensional;
-
- /**
- * @param Google_Service_Sheets_BasicChartAxis
- */
- public function setAxis($axis)
- {
- $this->axis = $axis;
- }
- /**
- * @return Google_Service_Sheets_BasicChartAxis
- */
- public function getAxis()
- {
- return $this->axis;
- }
- public function setChartType($chartType)
- {
- $this->chartType = $chartType;
- }
- public function getChartType()
- {
- return $this->chartType;
- }
- public function setCompareMode($compareMode)
- {
- $this->compareMode = $compareMode;
- }
- public function getCompareMode()
- {
- return $this->compareMode;
- }
- /**
- * @param Google_Service_Sheets_BasicChartDomain
- */
- public function setDomains($domains)
- {
- $this->domains = $domains;
- }
- /**
- * @return Google_Service_Sheets_BasicChartDomain
- */
- public function getDomains()
- {
- return $this->domains;
- }
- public function setHeaderCount($headerCount)
- {
- $this->headerCount = $headerCount;
- }
- public function getHeaderCount()
- {
- return $this->headerCount;
- }
- public function setInterpolateNulls($interpolateNulls)
- {
- $this->interpolateNulls = $interpolateNulls;
- }
- public function getInterpolateNulls()
- {
- return $this->interpolateNulls;
- }
- public function setLegendPosition($legendPosition)
- {
- $this->legendPosition = $legendPosition;
- }
- public function getLegendPosition()
- {
- return $this->legendPosition;
- }
- public function setLineSmoothing($lineSmoothing)
- {
- $this->lineSmoothing = $lineSmoothing;
- }
- public function getLineSmoothing()
- {
- return $this->lineSmoothing;
- }
- /**
- * @param Google_Service_Sheets_BasicChartSeries
- */
- public function setSeries($series)
- {
- $this->series = $series;
- }
- /**
- * @return Google_Service_Sheets_BasicChartSeries
- */
- public function getSeries()
- {
- return $this->series;
- }
- public function setStackedType($stackedType)
- {
- $this->stackedType = $stackedType;
- }
- public function getStackedType()
- {
- return $this->stackedType;
- }
- public function setThreeDimensional($threeDimensional)
- {
- $this->threeDimensional = $threeDimensional;
- }
- public function getThreeDimensional()
- {
- return $this->threeDimensional;
- }
- }
|