2023-07-26 19:33:39 +02:00

28 lines
501 B
JavaScript

$(function() {
$('#easypiechart-teal').easyPieChart({
scaleColor: false,
barColor: '#1ebfae'
});
});
$(function() {
$('#easypiechart-orange').easyPieChart({
scaleColor: false,
barColor: '#ffb53e'
});
});
$(function() {
$('#easypiechart-red').easyPieChart({
scaleColor: false,
barColor: '#f9243f'
});
});
$(function() {
$('#easypiechart-blue').easyPieChart({
scaleColor: false,
barColor: '#30a5ff'
});
});