You are here

public function ChartBase::getChartName in Charts 8.4

Same name and namespace in other branches
  1. 5.0.x src/Plugin/chart/Library/ChartBase.php \Drupal\charts\Plugin\chart\Library\ChartBase::getChartName()

Return the name of the chart.

Return value

string Returns the name as a string.

Overrides ChartInterface::getChartName

File

src/Plugin/chart/Library/ChartBase.php, line 21

Class

ChartBase
Base class Chart plugins.

Namespace

Drupal\charts\Plugin\chart\Library

Code

public function getChartName() {
  return $this->pluginDefinition['name'];
}