38 lines
923 B
JavaScript
38 lines
923 B
JavaScript
$(function () {
|
|
"use strict";
|
|
initCharts();
|
|
});
|
|
|
|
//Charts
|
|
function initCharts() {
|
|
//Chart Bar
|
|
$('.chart.chart-bar').sparkline(undefined, {
|
|
type: 'bar',
|
|
barColor: '#f2c80f',
|
|
negBarColor: '#fb4364',
|
|
barWidth: '4px',
|
|
height: '45px'
|
|
});
|
|
|
|
//Chart Pie
|
|
$('.chart.chart-pie').sparkline(undefined, {
|
|
type: 'pie',
|
|
height: '50px',
|
|
sliceColors: ['#374649', '#01b8aa', '#f2c80f', '#fd625e']
|
|
});
|
|
|
|
//Chart Line
|
|
$('.chart.chart-line').sparkline(undefined, {
|
|
type: 'line',
|
|
width: '60px',
|
|
height: '45px',
|
|
lineColor: '#fd625e',
|
|
lineWidth: 1.5,
|
|
fillColor: 'rgba(0,0,0,0)',
|
|
spotColor: 'rgba(255,255,255,0.40)',
|
|
maxSpotColor: 'rgba(255,255,255,0.40)',
|
|
minSpotColor: 'rgba(255,255,255,0.40)',
|
|
spotRadius: 3,
|
|
highlightSpotColor: '#3aaaec'
|
|
});
|
|
} |