yii2-sparkline
A wrapper for Jquery Sparkline in Yii2, (*1)
Installation
The preferred way to install this extension is through composer., (*2)
Either run, (*3)
php composer.phar require --prefer-dist mrlco/yii2-sparkline "*"
or add, (*4)
"mrlco/yii2-sparkline": "*"
to the require section of your composer.json file., (*5)
Usage
Remember to include the Sparkline.php where ever you need:, (*6)
use mrlco\sparkline\Sparkline;
And in your view:, (*7)
<?= \mrlco\sparkline\Sparkline::widget([
'clientOptions' => [
'type' => 'bar',
'height' => 20,
'barColor' => '#00a65a',
],
'data' => [90, 80, 90, -70, 61, -83, 63]
]); ?>