Number Chart

Number Chart

A number chart is generated by adding the --number flag to the artisan command lit:chart {name}.

php artisan lit:chart SalesProductsChart --number

Configuration

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');
Join us on our discord server