yii2mod/yii2-c3-chart
最新稳定版本:1.0.2
Composer 安装命令:
composer require yii2mod/yii2-c3-chart
包简介
Yii2 wrapper for D3-based reusable chart library
README 文档
README
Yii2 Chart Widget
Yii2 wrapper for D3-based reusable chart library
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist yii2mod/yii2-c3-chart "*"
or add
"yii2mod/yii2-c3-chart": "*"
to the require section of your composer.json file.
Usage
Once the extension is installed, simply use it in your code by :
<?php echo \yii2mod\c3\chart\Chart::widget([ 'options' => [ 'id' => 'popularity_chart' ], 'clientOptions' => [ 'data' => [ 'x' => 'x', 'columns' => [ ['x', 'week 1', 'week 2', 'week 3', 'week 4'], ['Popularity', 10, 20, 30, 50] ], 'colors' => [ 'Popularity' => '#4EB269', ], ], 'axis' => [ 'x' => [ 'label' => 'Month', 'type' => 'category' ], 'y' => [ 'label' => [ 'text' => 'Popularity', 'position' => 'outer-top' ], 'min' => 0, 'max' => 100, 'padding' => ['top' => 10, 'bottom' => 0] ] ] ] ]); ?>
Chart Examples
You can find them on the examples page
Chart Options
You can find them on the options page
统计信息
- 总下载量: 89.57k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 13
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-06-17