Chart widget for Yii2 based on Chart.js
- PHP 5.6 or higher
- Yii2 v.2.0.33 and newest
- Chart.js v.2.7.3 and newest.
To install the widget, run the following command in the console:
$ composer require "wdmg/yii2-chartjs"
<?php
use wdmg\widgets\chartjs;
...
echo ChartJS::widget([
'type' => 'line',
'options' => [
'width' => 640,
'height' => 260
],
'data' => [
'labels' => ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
'datasets' => [
[
'label'=> 'Bob',
'data' => [5, 8, 12, 10, 7, 13],
'backgroundColor' => [
'rgba(54, 162, 235, 0.2)'
],
'borderColor' => [
'rgba(54, 162, 235, 1)'
],
'borderWidth' => 1
],
[
'label'=> 'Alice',
'data' => [6, 8, 10, 6, 4, 12],
'backgroundColor' => [
'rgba(255, 99, 132, 0.2)'
],
'borderColor' => [
'rgba(255,99,132,1)'
],
'borderWidth' => 1
]
]
]
]);
?>
See more on Creating a Chart
- v.1.0.7 - Update copyrights
- v.1.0.6 - Up to date dependencies
- v.1.0.5 - Fixed deprecated class declaration
- v.1.0.4 - Update Yii2 version
- v.1.0.3 - Update Yii2 version