You are here

ChartConfigData.php in Charts 5.0.x

Same filename and directory in other branches
  1. 8.4 src/Plugin/DataType/ChartConfigData.php

File

src/Plugin/DataType/ChartConfigData.php
View source
<?php

namespace Drupal\charts\Plugin\DataType;

use Drupal\Core\TypedData\TypedData;

/**
 * Provides a data type wrapping for chart.
 *
 * @DataType(
 *   id = "chart_config",
 *   label = @Translation("Chart config"),
 *   description = @Translation("A chart configuration"),
 * )
 */
class ChartConfigData extends TypedData {

  /**
   * Cached processed value.
   *
   * @var string
   */
  protected $value;

}

Classes

Namesort descending Description
ChartConfigData Provides a data type wrapping for chart.