public function ChartAxes::getTextStyleValue in Charts 8.3
Get an array property that specifies the axis text style.
Parameters
string $key: Machine name of the text style property.
Return value
mixed Text Style Value.
File
- modules/
charts_google/ src/ Settings/ Google/ ChartAxes.php, line 317
Class
- ChartAxes
- Class ChartAxes.
Namespace
Drupal\charts_google\Settings\GoogleCode
public function getTextStyleValue($key) {
return isset($this->textStyle[$key]) ? $this->textStyle[$key] : NULL;
}