You are here

ChartDataItem.php in Charts 5.0.x

Same filename and directory in other branches
  1. 8.4 src/Element/ChartDataItem.php

File

src/Element/ChartDataItem.php
View source
<?php

namespace Drupal\charts\Element;

use Drupal\Core\Render\Element\RenderElement;

/**
 * Provides a chart data item render element.
 *
 * @RenderElement("chart_data_item")
 */
class ChartDataItem extends RenderElement {

  /**
   * {@inheritdoc}
   */
  public function getInfo() {
    return [
      '#data' => NULL,
      '#color' => NULL,
      // Often used as content of the tooltip.
      '#title' => NULL,
    ];
  }

}

Classes

Namesort descending Description
ChartDataItem Provides a chart data item render element.