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.

28 line
543B

  1. <?php
  2. /**
  3. * @link https://github.com/2amigos/yii2-chartjs-widget
  4. * @copyright Copyright (c) 2013-2015 2amigOS! Consulting Group LLC
  5. * @license http://opensource.org/licenses/BSD-3-Clause
  6. */
  7. namespace dosamigos\chartjs;
  8. use yii\web\AssetBundle;
  9. /**
  10. *
  11. * ChartPluginAsset
  12. *
  13. * @author Antonio Ramirez <amigo.cobos@gmail.com>
  14. * @link http://www.ramirezcobos.com/
  15. * @link http://www.2amigos.us/
  16. */
  17. class ChartJsAsset extends AssetBundle
  18. {
  19. public $sourcePath = '@bower/chartjs/dist';
  20. public $js = [
  21. 'Chart.js'
  22. ];
  23. }