bucketSize = $bucketSize; } public function getBucketSize() { return $this->bucketSize; } /** * @param string */ public function setLegendPosition($legendPosition) { $this->legendPosition = $legendPosition; } /** * @return string */ public function getLegendPosition() { return $this->legendPosition; } public function setOutlierPercentile($outlierPercentile) { $this->outlierPercentile = $outlierPercentile; } public function getOutlierPercentile() { return $this->outlierPercentile; } /** * @param HistogramSeries[] */ public function setSeries($series) { $this->series = $series; } /** * @return HistogramSeries[] */ public function getSeries() { return $this->series; } /** * @param bool */ public function setShowItemDividers($showItemDividers) { $this->showItemDividers = $showItemDividers; } /** * @return bool */ public function getShowItemDividers() { return $this->showItemDividers; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(HistogramChartSpec::class, 'Google_Service_Sheets_HistogramChartSpec');