barColor = $barColor;
}
/**
* @return Color
*/
public function getBarColor()
{
return $this->barColor;
}
/**
* @param ColorStyle
*/
public function setBarColorStyle(ColorStyle $barColorStyle)
{
$this->barColorStyle = $barColorStyle;
}
/**
* @return ColorStyle
*/
public function getBarColorStyle()
{
return $this->barColorStyle;
}
/**
* @param ChartData
*/
public function setData(ChartData $data)
{
$this->data = $data;
}
/**
* @return ChartData
*/
public function getData()
{
return $this->data;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(HistogramSeries::class, 'Google_Service_Sheets_HistogramSeries');