hscstudio/yii2-chart

Chart Extension for Yii 2.0 With ChartNewJs

Installs: 874

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 2

Forks: 0

Open Issues: 2

Language:JavaScript

Type:yii2-extension

1.0.0 2015-06-18 02:58 UTC

This package is auto-updated.

Last update: 2024-03-25 19:31:23 UTC


README

Chart Extension for Yii 2.0 With ChartNewJs

Latest Stable Version Total Downloads Latest Unstable Version License

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]],
  ],
]);
?>