hscstudio / yii2-chart
Chart Extension for Yii 2.0 With ChartNewJs
Installs: 887
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 2
Language:JavaScript
Type:yii2-extension
This package is auto-updated.
Last update: 2024-10-25 20:43:45 UTC
README
Chart Extension for Yii 2.0 With ChartNewJs
What is ChartNewJs?? It's library for chart from https://github.com/FVANCOP/ChartNew.js/ This library improved from https://github.com/nnnick/Chart.js/ with awesome added feature
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist hscstudio/yii2-chart "~1.0"
or add
"hscstudio/yii2-chart": "~1.0"
to the require section of your composer.json
file.
Usage
Once the extension is installed, simply use it in your code by :
<?= \hscstudio\chart\Chart::widget(); ?>
or
<?php use hscstudio\chart\ChartNew; echo ChartNew::widget([ 'type'=>'bar', # pie, doughnut, line, bar, horizontalBar, radar, polar, stackedBar, polarArea 'title'=>'PHP Framework', 'labels'=>['Yii','Laravel','CI','Symfony'], 'datasets' => [ ['title'=>'2014','data'=>[35,45,15,5]], ['title'=>'2015','data'=>[45,35,5,15]], ], ]); ?>