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.
58 lines
1.4 KiB
58 lines
1.4 KiB
/**
|
|
* 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); |