You are here

public function GoogleOptions::getLegendProperty in Charts 8.3

Gets a Legend property.

Parameters

mixed $key: Property key.

Return value

mixed Legend Property.

File

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

Class

GoogleOptions
Class GoogleOptions.

Namespace

Drupal\charts_google\Settings\Google

Code

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