sirgalas/yii2-morrisjs

Installs: 27

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 4

Type:yii2-extension

2.0.6 2018-02-23 13:05 UTC

This package is auto-updated.

Last update: 2024-04-19 21:39:28 UTC


README

I was able to use the extension in the extension, Morris.Donut. So, besides the code specified here, шn order for you to use Morris.Donut, use the following code:

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'],
]);