asantibanez / livewire-charts

Neat Livewire Charts for your Laravel projects
MIT License
805 stars 120 forks source link

Random colors #21

Closed CyberMullah closed 3 years ago

CyberMullah commented 3 years ago

If there are more columns it would a headache to define all column colors instead it would be better to have an option as auto or random color for columns.

CyberMullah commented 3 years ago

You may do this:

foreach ($transactions as $key => $value) {
       $networkChart->addColumn($this->setColumnTitle($key), $value, sprintf('#%06X', mt_rand(0, 0xFFFFFF)));
}