A progress chart is generated by adding the --progress flag to the artisan
command lit:chart {name}.
php artisan lit:chart SalesProgressChart --progress
Which data is displayed in your chart is configured in the value method as
shown below.
public function value($query)
{
return $this->count($query);
}
Possible methods:
return $this->count($query);
return $this->average($query, 'price');
return $this->min($query, 'price');
return $this->max($query, 'price');
return $this->sum($query, 'price');