ereminmdev/yii2-chartjs

Chart.js 库的 Yii2 小部件。

1.0.4 2024-04-28 10:22 UTC

This package is auto-updated.

Last update: 2024-09-28 11:27:20 UTC


README

Chart.js 库的 Yii2 小部件:https://chart.js.cn/

安装

composer require --prefer-dist ereminmdev/yii2-chartjs

文档

https://chart.js.cn/docs/latest/

使用

将小部件插入到视图中

<?= \ereminmdev\yii2\chartjs\ChartJs::widget([
    'id' => 'my_chart',
    'type' => 'bar',
    'data' => [...],
    'options' => [
        'scales' => [
            'y' => [
                'beginAtZero' => true,
            ],
        ],
        'plugins' => [
            'legend' => [
                'position' => 'bottom',
            ],
        ],
    ],
    'plugins' => [...],
]) ?>