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