<?php
declare(strict_types=1);
namespace Chartisan\PHP;
/**
* Represents the chart information.
*/
class ChartData
{
/**
* Stores the chart labels.
*
* @var string[]
*/
public array $labels = [];
/**
* Stores the extra information of the chart if needed.
*/
public ?array $extra = null;
}