You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
- /**
- * @link https://github.com/2amigos/yii2-chartjs-widget
- * @copyright Copyright (c) 2013-2015 2amigOS! Consulting Group LLC
- * @license http://opensource.org/licenses/BSD-3-Clause
- */
- namespace dosamigos\chartjs;
-
- use yii\web\AssetBundle;
-
- /**
- *
- * ChartPluginAsset
- *
- * @author Antonio Ramirez <amigo.cobos@gmail.com>
- * @link http://www.ramirezcobos.com/
- * @link http://www.2amigos.us/
- */
- class ChartJsAsset extends AssetBundle
- {
- public $sourcePath = '@bower/chartjs/dist';
-
- public $js = [
- 'Chart.js'
- ];
-
- }
|