
| Current Path : /var/www/html/rocksensor/web/modules/contrib/charts/src/Element/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor/web/modules/contrib/charts/src/Element/ChartDataItem.php |
<?php
namespace Drupal\charts\Element;
use Drupal\Core\Render\Element\RenderElementBase;
/**
* Provides a chart data item render element.
*
* @RenderElement("chart_data_item")
*/
class ChartDataItem extends RenderElementBase {
/**
* {@inheritdoc}
*/
public function getInfo(): array {
return [
'#data' => NULL,
'#color' => NULL,
// Often used as content of the tooltip.
'#title' => NULL,
];
}
}