ok
Direktori : /home/importfo/public_html/apexorthopedicandeyehospital.com/admin/assets/easypie-chart/ |
Current File : /home/importfo/public_html/apexorthopedicandeyehospital.com/admin/assets/easypie-chart/example.js |
/** * Theme: Montran Admin Template * Author: Coderthemes * Easy pie chart */ !function($) { "use strict"; var EasyPieChart = function() {}; EasyPieChart.prototype.init = function() { //initializing various types of easy pie charts $('.easy-pie-chart-1').easyPieChart({ easing: 'easeOutBounce', barColor : '#8CC152', lineWidth: 3, onStep: function(from, to, percent) { $(this.el).find('.percent').text(Math.round(percent)); } }); $('.easy-pie-chart-2').easyPieChart({ easing: 'easeOutBounce', barColor : '#F6BB42', lineWidth: 3, trackColor : false, lineCap : 'butt', onStep: function(from, to, percent) { $(this.el).find('.percent').text(Math.round(percent)); } }); $('.easy-pie-chart-3').easyPieChart({ easing: 'easeOutBounce', barColor : '#E9573F', lineWidth: 10, lineCap : 'square', onStep: function(from, to, percent) { $(this.el).find('.percent').text(Math.round(percent)); } }); $('.easy-pie-chart-4').easyPieChart({ easing: 'easeOutBounce', barColor : '#3BAFDA', lineWidth: 20, onStep: function(from, to, percent) { $(this.el).find('.percent').text(Math.round(percent)); } }); }, //init $.EasyPieChart = new EasyPieChart, $.EasyPieChart.Constructor = EasyPieChart }(window.jQuery), //initializing function($) { "use strict"; $.EasyPieChart.init() }(window.jQuery);