1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-22 01:44:25 +04:00
Files
tabler/js/app/charts.js
2019-06-17 00:27:20 +02:00

167 lines
2.8 KiB
JavaScript

(function ($) {
$(document).ready(function () {
$().peity && $('[data-spark]').each(function () {
const $this = $(this),
data = $this.attr('data-spark'),
color = $this.attr('data-spark-color') || 'blue',
type = $this.attr('data-spark-type') || 'line';
const $div = $('<div />').html(data);
$this.append($div);
let strokeColor = tabler.colors[color],
fillColor = tabler.colors[color];
if (type === 'donut' || type === 'pie') {
fillColor = [fillColor, tabler.hexToRgbA(fillColor, .1)];
} else if (type === 'bar') {
fillColor = [fillColor];
} else if (type === 'line') {
fillColor = tabler.hexToRgbA(fillColor, .1);
}
$div.peity(type, {
width: $this.width(),
height: $this.height(),
// max: 100,
// min: 0,
stroke: strokeColor,
strokeWidth: 2,
fill: fillColor,
padding: .2,
innerRadius: (type === 'donut') ? 17 : 0
});
});
});
})(jQuery);
/*
charts default configuration
*/
if (window.Apex) {
var borderColor = 'rgba(0, 0, 0, 0.09)';
var mutedColor = '#888e9a';
window.Apex = {
chart: {
fontFamily: 'inherit',
foreColor: 'inherit',
toolbar: {
show: false,
},
zoom: {
enabled: false
},
animations: {
enabled: false,
}
},
grid: {
show: false,
position: 'back',
borderColor: borderColor,
padding: {
right: 0,
left: 0,
bottom: 0,
top: 0
}
},
dataLabels: {
enabled: false,
offsetY: -6,
dropShadow: {
enabled: false,
},
},
plotOptions: {
pie: {
expandOnClick: false,
dataLabels: {
offset: -8,
minAngleToShowLabel: 10,
},
},
},
stroke: {
width: 2,
curve: 'smooth',
},
fill: {
type: 'solid',
opacity: 1
},
markers: {
size: 0,
strokeWidth: 1,
radius: 2,
hover: {
size: 4,
}
},
legend: {
show: true,
fontSize: '14px',
markers: {
width: 8,
height: 8
},
itemMargin: {
horizontal: 0,
vertical: 8
},
},
title: {
style: {
fontSize: '14px',
}
},
tooltip: {
fillSeriesColor: false
},
xaxis: {
labels: {
style: {
colors: mutedColor,
fontSize: '12px',
}
},
tooltip: {
enabled: false
},
axisBorder: {
color: borderColor,
height: 0
},
axisTicks: {
show: true,
height: 4,
color: borderColor
}
},
yaxis: {
show: false,
labels: {
show: false
}
}
};
}