You are here

public function ChartAxes::getTitleTextStyleValue in Charts 8.3

Get an array property that specifies the axis title text style.

Parameters

string $key: Machine name of the text style property.

Return value

mixed Title Text Style Value.

File

modules/charts_google/src/Settings/Google/ChartAxes.php, line 172

Class

ChartAxes
Class ChartAxes.

Namespace

Drupal\charts_google\Settings\Google

Code

public function getTitleTextStyleValue($key) {
  return isset($this->titleTextStyle[$key]) ? $this->titleTextStyle[$key] : NULL;
}