You are here

public function GoogleOptions::setAxisTitlesPosition in Charts 8.3

Sets the position of the axis titles.

Supported values:

  • in: Draw the axis titles inside the chart area.
  • out: Draw the axis titles outside the chart area.
  • none: Omit the axis titles.

Parameters

string $position: Position.

File

modules/charts_google/src/Settings/Google/GoogleOptions.php, line 313

Class

GoogleOptions
Class GoogleOptions.

Namespace

Drupal\charts_google\Settings\Google

Code

public function setAxisTitlesPosition($position) {
  $this->axisTitlesPosition = $position;
}