132 lines
3.3 KiB
JavaScript
132 lines
3.3 KiB
JavaScript
/*
|
|
Template Name: Veltrix - Responsive Bootstrap 4 Admin Dashboard
|
|
Author: Themesbrand
|
|
File: Sparkline chart Init
|
|
*/
|
|
|
|
|
|
|
|
$(document).ready(function() {
|
|
var SparklineCharts = function() {
|
|
|
|
$('#sparkline1').sparkline([20, 40, 30], {
|
|
type: 'pie',
|
|
height: '200',
|
|
resize: true,
|
|
sliceColors: ['#02a499', '#3c4ccf', '#e9ecef']
|
|
});
|
|
|
|
$("#sparkline2").sparkline([5,6,2,8,9,4,7,10,11,12,10,4,7,10], {
|
|
type: 'bar',
|
|
height: '200',
|
|
barWidth: 10,
|
|
barSpacing: 7,
|
|
barColor: '#02a499'
|
|
});
|
|
|
|
$('#sparkline3').sparkline([5, 6, 2, 9, 4, 7, 10, 12,4,7,10], {
|
|
type: 'bar',
|
|
height: '200',
|
|
barWidth: '10',
|
|
resize: true,
|
|
barSpacing: '7',
|
|
barColor: '#3c4ccf'
|
|
});
|
|
$('#sparkline3').sparkline([5, 6, 2, 9, 4, 7, 10, 12,4,7,10], {
|
|
type: 'line',
|
|
height: '200',
|
|
lineColor: '#02a499',
|
|
fillColor: 'transparent',
|
|
composite: true,
|
|
lineWidth: 2,
|
|
highlightLineColor: 'rgba(0,0,0,.1)',
|
|
highlightSpotColor: 'rgba(0,0,0,.2)'
|
|
});
|
|
|
|
$("#sparkline4").sparkline([0, 23, 43, 35, 44, 45, 56, 37, 40, 45, 56, 7, 10], {
|
|
type: 'line',
|
|
width: '100%',
|
|
height: '200',
|
|
lineColor: '#3c4ccf',
|
|
fillColor: 'transparent',
|
|
spotColor: '#3c4ccf',
|
|
lineWidth: 2,
|
|
minSpotColor: undefined,
|
|
maxSpotColor: undefined,
|
|
highlightSpotColor: undefined,
|
|
highlightLineColor: undefined
|
|
});
|
|
$('#sparkline5').sparkline([15, 23, 55, 35, 54, 45, 66, 47, 30], {
|
|
type: 'line',
|
|
width: '100%',
|
|
height: '200',
|
|
chartRangeMax: 50,
|
|
resize: true,
|
|
lineColor: '#3c4ccf',
|
|
fillColor: 'rgba(60, 76, 207, 0.3)',
|
|
highlightLineColor: 'rgba(0,0,0,.1)',
|
|
highlightSpotColor: 'rgba(0,0,0,.2)',
|
|
});
|
|
|
|
$('#sparkline5').sparkline([0, 13, 10, 14, 15, 10, 18, 20, 0], {
|
|
type: 'line',
|
|
width: '100%',
|
|
height: '200',
|
|
chartRangeMax: 40,
|
|
lineColor: '#02a499',
|
|
fillColor: 'rgba(2, 164, 153, 0.3)',
|
|
composite: true,
|
|
resize: true,
|
|
highlightLineColor: 'rgba(0,0,0,.1)',
|
|
highlightSpotColor: 'rgba(0,0,0,.2)',
|
|
});
|
|
|
|
$("#sparkline6").sparkline([4, 6, 7, 7, 4, 3, 2, 1, 4, 4, 5, 6, 3, 4, 5, 8, 7, 6, 9, 3, 2, 4, 1, 5, 6, 4, 3, 7], {
|
|
type: 'discrete',
|
|
width: '280',
|
|
height: '200',
|
|
lineColor: '#ffffff'
|
|
});
|
|
|
|
$('#sparkline7').sparkline([10,12,12,9,7], {
|
|
type: 'bullet',
|
|
width: '280',
|
|
height: '80',
|
|
targetColor: '#3c4ccf',
|
|
performanceColor: '#ea553d'
|
|
});
|
|
$('#sparkline8').sparkline([4,27,34,52,54,59,61,68,78,82,85,87,91,93,100], {
|
|
type: 'box',
|
|
width: '280',
|
|
height: '80',
|
|
boxLineColor: '#6d60b0',
|
|
boxFillColor: '#f1f1f1',
|
|
whiskerColor: '#6d60b0',
|
|
outlierLineColor: '#6d60b0',
|
|
medianColor: '#6d60b0',
|
|
targetColor: '#6d60b0'
|
|
});
|
|
$('#sparkline9').sparkline([1,1,0,1,-1,-1,1,-1,0,0,1,1], {
|
|
height: '80',
|
|
width: '100%',
|
|
type: 'tristate',
|
|
posBarColor: '#009688',
|
|
negBarColor: '#8d6e63',
|
|
zeroBarColor: '#0000ff',
|
|
barWidth: 8,
|
|
barSpacing: 3,
|
|
zeroAxis: false
|
|
});
|
|
|
|
|
|
|
|
}
|
|
var sparkResize;
|
|
|
|
$(window).resize(function(e) {
|
|
clearTimeout(sparkResize);
|
|
sparkResize = setTimeout(SparklineCharts, 500);
|
|
});
|
|
SparklineCharts();
|
|
|
|
}); |