sirgalas/yii2-morrisjs

安装: 27

依赖: 0

建议: 0

安全性: 0

星标: 0

关注者: 2

分支: 4

类型:yii2-extension

2.0.6 2018-02-23 13:05 UTC

This package is auto-updated.

Last update: 2024-09-19 22:34:03 UTC


README

我能够在扩展中使用了 Morris.Donut 扩展。因此,除了这里指定的代码(链接)之外,如果您想使用 Morris.Donut,请使用以下代码

use sirgalas\Morris;


echo Morris\Donut::widget([
    'resize' => true,
    'element' => 'donutChart',
    'data' => [
        [ 'label'=>'Download Sales', 'value'=>12 ],
        [ 'label'=> 'In-Store Sales', 'value'=> 30 ],
        ['label'=>'Mail-Order Sales', 'value'=> 20 ]
    ],
    'donutColor' => ['#3c8dbc', '#f56954', '#00a65a'],
]);