HOME


Mini Shell 1.0
DIR: /home/islapiiu/sites/faithlinkint/control-panel/js/pages/widgets/infobox/
Upload File :
Current File : /home/islapiiu/sites/faithlinkint/control-panel/js/pages/widgets/infobox/infobox-1.js
$(function () {

    initCounters();

    initCharts();

});



//Widgets count plugin

function initCounters() {

    $('.count-to').countTo();

}



//Charts

function initCharts() {

    //Chart Bar

    $('.chart.chart-bar').sparkline(undefined, {

        type: 'bar',

        barColor: '#fff',

        negBarColor: '#fff',

        barWidth: '4px',

        height: '34px'

    });



    //Chart Pie

    $('.chart.chart-pie').sparkline(undefined, {

        type: 'pie',

        height: '50px',

        sliceColors: ['rgba(255,255,255,0.70)', 'rgba(255,255,255,0.85)', 'rgba(255,255,255,0.95)', 'rgba(255,255,255,1)']

    });



    //Chart Line

    $('.chart.chart-line').sparkline(undefined, {

        type: 'line',

        width: '60px',

        height: '45px',

        lineColor: '#fff',

        lineWidth: 1.3,

        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: '#fff'

    });

}