ChartConfigData.php in Charts 5.0.x
Same filename and directory in other branches
Namespace
Drupal\charts\Plugin\DataTypeFile
src/Plugin/DataType/ChartConfigData.phpView 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
Name | Description |
---|---|
ChartConfigData | Provides a data type wrapping for chart. |