You are here

public function ChartType::setChartType in Charts 8.3

Same name and namespace in other branches
  1. 8 modules/charts_google/src/Settings/Google/ChartType.php \Drupal\charts_google\Settings\Google\ChartType::setChartType()

Chart Type.

Parameters

mixed $type: Chart Type.

File

modules/charts_google/src/Settings/Google/ChartType.php, line 28

Class

ChartType
Chart Type.

Namespace

Drupal\charts_google\Settings\Google

Code

public function setChartType($type) {
  $ucType = ucfirst($type);
  $this->type = $ucType . 'Chart';
}