Aucune description

BubbleChartSpec.php 4.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <?php
  2. /*
  3. * Copyright 2014 Google Inc.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  6. * use this file except in compliance with the License. You may obtain a copy of
  7. * the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  13. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  14. * License for the specific language governing permissions and limitations under
  15. * the License.
  16. */
  17. class Google_Service_Sheets_BubbleChartSpec extends Google_Model
  18. {
  19. protected $bubbleBorderColorType = 'Google_Service_Sheets_Color';
  20. protected $bubbleBorderColorDataType = '';
  21. protected $bubbleLabelsType = 'Google_Service_Sheets_ChartData';
  22. protected $bubbleLabelsDataType = '';
  23. public $bubbleMaxRadiusSize;
  24. public $bubbleMinRadiusSize;
  25. public $bubbleOpacity;
  26. protected $bubbleSizesType = 'Google_Service_Sheets_ChartData';
  27. protected $bubbleSizesDataType = '';
  28. protected $bubbleTextStyleType = 'Google_Service_Sheets_TextFormat';
  29. protected $bubbleTextStyleDataType = '';
  30. protected $domainType = 'Google_Service_Sheets_ChartData';
  31. protected $domainDataType = '';
  32. protected $groupIdsType = 'Google_Service_Sheets_ChartData';
  33. protected $groupIdsDataType = '';
  34. public $legendPosition;
  35. protected $seriesType = 'Google_Service_Sheets_ChartData';
  36. protected $seriesDataType = '';
  37. /**
  38. * @param Google_Service_Sheets_Color
  39. */
  40. public function setBubbleBorderColor(Google_Service_Sheets_Color $bubbleBorderColor)
  41. {
  42. $this->bubbleBorderColor = $bubbleBorderColor;
  43. }
  44. /**
  45. * @return Google_Service_Sheets_Color
  46. */
  47. public function getBubbleBorderColor()
  48. {
  49. return $this->bubbleBorderColor;
  50. }
  51. /**
  52. * @param Google_Service_Sheets_ChartData
  53. */
  54. public function setBubbleLabels(Google_Service_Sheets_ChartData $bubbleLabels)
  55. {
  56. $this->bubbleLabels = $bubbleLabels;
  57. }
  58. /**
  59. * @return Google_Service_Sheets_ChartData
  60. */
  61. public function getBubbleLabels()
  62. {
  63. return $this->bubbleLabels;
  64. }
  65. public function setBubbleMaxRadiusSize($bubbleMaxRadiusSize)
  66. {
  67. $this->bubbleMaxRadiusSize = $bubbleMaxRadiusSize;
  68. }
  69. public function getBubbleMaxRadiusSize()
  70. {
  71. return $this->bubbleMaxRadiusSize;
  72. }
  73. public function setBubbleMinRadiusSize($bubbleMinRadiusSize)
  74. {
  75. $this->bubbleMinRadiusSize = $bubbleMinRadiusSize;
  76. }
  77. public function getBubbleMinRadiusSize()
  78. {
  79. return $this->bubbleMinRadiusSize;
  80. }
  81. public function setBubbleOpacity($bubbleOpacity)
  82. {
  83. $this->bubbleOpacity = $bubbleOpacity;
  84. }
  85. public function getBubbleOpacity()
  86. {
  87. return $this->bubbleOpacity;
  88. }
  89. /**
  90. * @param Google_Service_Sheets_ChartData
  91. */
  92. public function setBubbleSizes(Google_Service_Sheets_ChartData $bubbleSizes)
  93. {
  94. $this->bubbleSizes = $bubbleSizes;
  95. }
  96. /**
  97. * @return Google_Service_Sheets_ChartData
  98. */
  99. public function getBubbleSizes()
  100. {
  101. return $this->bubbleSizes;
  102. }
  103. /**
  104. * @param Google_Service_Sheets_TextFormat
  105. */
  106. public function setBubbleTextStyle(Google_Service_Sheets_TextFormat $bubbleTextStyle)
  107. {
  108. $this->bubbleTextStyle = $bubbleTextStyle;
  109. }
  110. /**
  111. * @return Google_Service_Sheets_TextFormat
  112. */
  113. public function getBubbleTextStyle()
  114. {
  115. return $this->bubbleTextStyle;
  116. }
  117. /**
  118. * @param Google_Service_Sheets_ChartData
  119. */
  120. public function setDomain(Google_Service_Sheets_ChartData $domain)
  121. {
  122. $this->domain = $domain;
  123. }
  124. /**
  125. * @return Google_Service_Sheets_ChartData
  126. */
  127. public function getDomain()
  128. {
  129. return $this->domain;
  130. }
  131. /**
  132. * @param Google_Service_Sheets_ChartData
  133. */
  134. public function setGroupIds(Google_Service_Sheets_ChartData $groupIds)
  135. {
  136. $this->groupIds = $groupIds;
  137. }
  138. /**
  139. * @return Google_Service_Sheets_ChartData
  140. */
  141. public function getGroupIds()
  142. {
  143. return $this->groupIds;
  144. }
  145. public function setLegendPosition($legendPosition)
  146. {
  147. $this->legendPosition = $legendPosition;
  148. }
  149. public function getLegendPosition()
  150. {
  151. return $this->legendPosition;
  152. }
  153. /**
  154. * @param Google_Service_Sheets_ChartData
  155. */
  156. public function setSeries(Google_Service_Sheets_ChartData $series)
  157. {
  158. $this->series = $series;
  159. }
  160. /**
  161. * @return Google_Service_Sheets_ChartData
  162. */
  163. public function getSeries()
  164. {
  165. return $this->series;
  166. }
  167. }