machour/yii2-sparkline

Yii2 jQuery Sparkline widget

Installs: 25 892

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 3

Forks: 0

Open Issues: 0

Type:yii2-extension

1.0.0 2015-11-15 20:01 UTC

This package is auto-updated.

Last update: 2024-03-16 02:20:14 UTC


README

The jQuery sparkline assets and widget for Yii2.

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist machour/yii2-sparkline "*"

or add

"machour/yii2-sparkline": "*"

to the require section of your composer.json file.

Usage

Once the extension is installed, use the widget this way:

<?= \machour\sparkline\Sparkline::widget([
    'clientOptions' => [
        'type' => 'bar', 
        'height' => 20, 
        'barColor' => '#00a65a',
    ],
    'data' => [90, 80, 90, -70, 61, -83, 63]
]); ?>

This would produce the following sparkline: Sparkline example

This documentation is available online