You are here

public function ChartAxes::getViewWindowValue in Charts 8.3

Get View Window Value.

Get an array property that specifies the the cropping range of the axis.

Parameters

string $key: Property key.

Return value

mixed View Window Value.

File

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

Class

ChartAxes
Class ChartAxes.

Namespace

Drupal\charts_google\Settings\Google

Code

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