kongoon / yii2-c3js-chart
C3JS 图表组件,适用于 Yii Framework 2.0
0.0.4
2016-05-23 07:01 UTC
Requires
- bower-asset/c3js-chart: *
- yiisoft/yii2: *
This package is auto-updated.
Last update: 2024-09-12 03:21:29 UTC
README
轻松将 C3JS 图表添加到您的 Yii2 应用程序中。
安装
安装此扩展的首选方式是通过 composer。
运行以下命令之一:
composer require kongoon/yii2-c3js-chart
用法
要使用此小部件,将以下代码插入到视图文件中:
use kongoon\c3js\C3JS; echo C3JS::widget([ 'options' => [ 'data' => [ 'x' => 'x', 'columns' => [ ['x', '2016-01-01', '2016-02-01', '2016-03-01', '2016-04-01', '2016-05-01', '2016-06-01'], ['data1', 30, 200, 100, 400, 150, 250], ['data2', 50, 20, 10, 40, 15, 25] ], 'types' => [ 'data1' => 'bar', 'data2' => 'bar' ], ], 'axis' => [ 'y' => [ 'label' => [ 'text' => 'Y Label', 'position' => 'outer-middle', ] ], 'x' => [ 'type' => 'timeseries', 'tick' => [ 'format' => '%Y-%m-%d' ], 'label' => [ 'text' => 'X Label', 'position' => 'outer-middle', ] ] ] ], ]);