for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Afonso\Plotta;
class XAxisConfig extends AxisConfig
{
/**
* @var array
*/
public $labels;
* @var string
public $dateFormat;
public function __construct(string $name, array $labels, string $dateFormat = null)
parent::__construct($name);
$this->labels = $labels;
$this->dateFormat = $dateFormat;
}