File indexing completed on 2026-04-09 07:58:28
0001
0002 $(document).ready(function() {
0003 var sparklineLogin = function() {
0004 $("#sparkline1").sparkline([5,6,2,8,9,4,7,10,11,12,10], {
0005 type: 'bar',
0006 height: '45',
0007 barWidth: 7,
0008 barSpacing: 4,
0009 barColor: '#99d683'
0010
0011 });
0012
0013 $('#sparkline2').sparkline([20, 40, 30], {
0014 type: 'pie',
0015 width: '50',
0016 height: '45',
0017 resize: true,
0018 sliceColors: ['#13dafe', '#6164c1', '#f1f2f7']
0019 });
0020
0021
0022 $('#sparkline3').sparkline([5, 6, 2, 9, 4, 7, 10, 12], {
0023 type: 'bar',
0024 height: '164',
0025 barWidth: '7',
0026 resize: true,
0027 barSpacing: '5',
0028 barColor: '#f96262'
0029 });
0030
0031
0032 $("#sparkline4").sparkline([0, 23, 43, 35, 44, 45, 56, 37, 40, 45, 56, 7, 10], {
0033 type: 'line',
0034 width: '120',
0035 height: '45',
0036 lineColor: '#fb6d9d',
0037 fillColor: 'transparent',
0038 spotColor: '#fb6d9d',
0039 minSpotColor: undefined,
0040 maxSpotColor: undefined,
0041 highlightSpotColor: undefined,
0042 highlightLineColor: undefined
0043 });
0044
0045 $('#sparkline5').sparkline([15, 23, 55, 35, 54, 45, 66, 47, 30], {
0046 type: 'line',
0047 width: '100%',
0048 height: '160',
0049 chartRangeMax: 50,
0050 resize: true,
0051 lineColor: '#13dafe',
0052 fillColor: 'rgba(19, 218, 254, 0.3)',
0053 highlightLineColor: 'rgba(0,0,0,.1)',
0054 highlightSpotColor: 'rgba(0,0,0,.2)',
0055 });
0056
0057 $('#sparkline5').sparkline([0, 13, 10, 14, 15, 10, 18, 20, 0], {
0058 type: 'line',
0059 width: '100%',
0060 height: '160',
0061 chartRangeMax: 40,
0062 lineColor: '#6164c1',
0063 fillColor: 'rgba(97, 100, 193, 0.3)',
0064 composite: true,
0065 resize: true,
0066 highlightLineColor: 'rgba(0,0,0,.1)',
0067 highlightSpotColor: 'rgba(0,0,0,.2)',
0068 });
0069 $('#sparkline6').sparkline([5, 6, 2, 8, 9, 4, 7, 10, 11, 12, 10], {
0070 type: 'bar',
0071 height: '45',
0072 barWidth: '7',
0073 barSpacing: '4',
0074 barColor: '#13dafe'
0075 });
0076 $("#sparkline7").sparkline([0,2,8,6,8,5,6,4,8,6,4,2 ], {
0077 type: 'line',
0078 width: '100%',
0079 height: '50',
0080 lineColor: '#ffca4a',
0081 fillColor: '#ffca4a',
0082 highlightLineColor: 'rgba(0, 0, 0, 0.2)',
0083 highlightSpotColor: '#4f4f4f'
0084 });
0085 $("#sparkline8").sparkline([2,4,4,6,8,5,6,4,8,6,6,2 ], {
0086 type: 'line',
0087 width: '100%',
0088 height: '50',
0089 lineColor: '#ff7676',
0090 fillColor: '#ff7676',
0091 maxSpotColor: '#ff7676',
0092 highlightLineColor: 'rgba(0, 0, 0, 0.2)',
0093 highlightSpotColor: '#ff7676'
0094 });
0095 $("#sparkline9").sparkline([0,2,8,6,8,5,6,4,8,6,6,2 ], {
0096 type: 'line',
0097 width: '100%',
0098 height: '50',
0099 lineColor: '#2cabe3',
0100 fillColor: '#2cabe3',
0101 minSpotColor:'#2cabe3',
0102 maxSpotColor: '#2cabe3',
0103 highlightLineColor: 'rgba(0, 0, 0, 0.2)',
0104 highlightSpotColor: '#2cabe3'
0105 });
0106 $("#sparkline10").sparkline([2,4,4,6,8,5,6,4,8,6,6,2], {
0107 type: 'line',
0108 width: '100%',
0109 height: '50',
0110 lineColor: '#6164c1',
0111 fillColor: '#6164c1',
0112 maxSpotColor: '#6164c1',
0113 highlightLineColor: 'rgba(0, 0, 0, 0.2)',
0114 highlightSpotColor: '#6164c1'
0115 });
0116 $('#sparkline11').sparkline([20, 40, 30], {
0117 type: 'pie',
0118 height: '200',
0119 resize: true,
0120 sliceColors: ['#13dafe', '#6164c1', '#f1f2f7']
0121 });
0122
0123 $("#sparkline12").sparkline([5,6,2,8,9,4,7,10,11,12,10,4,7,10], {
0124 type: 'bar',
0125 height: '200',
0126 barWidth: 10,
0127 barSpacing: 7,
0128 barColor: '#99d683'
0129 });
0130
0131 $('#sparkline13').sparkline([5, 6, 2, 9, 4, 7, 10, 12,4,7,10], {
0132 type: 'bar',
0133 height: '200',
0134 barWidth: '10',
0135 resize: true,
0136 barSpacing: '7',
0137 barColor: '#f96262'
0138 });
0139 $('#sparkline13').sparkline([5, 6, 2, 9, 4, 7, 10, 12,4,7,10], {
0140 type: 'line',
0141 height: '200',
0142 lineColor: '#f96262',
0143 fillColor: 'transparent',
0144 composite: true,
0145 highlightLineColor: 'rgba(0,0,0,.1)',
0146 highlightSpotColor: 'rgba(0,0,0,.2)'
0147 });
0148 $("#sparkline14").sparkline([0, 23, 43, 35, 44, 45, 56, 37, 40, 45, 56, 7, 10], {
0149 type: 'line',
0150 width: '100%',
0151 height: '200',
0152 lineColor: '#fff',
0153 fillColor: 'transparent',
0154 spotColor: '#fff',
0155 minSpotColor: undefined,
0156 maxSpotColor: undefined,
0157 highlightSpotColor: undefined,
0158 highlightLineColor: undefined
0159 });
0160 $('#sparkline15').sparkline([5, 6, 2, 8, 9, 4, 7, 10, 11, 12, 10, 9, 4, 7], {
0161 type: 'bar',
0162 height: '200',
0163 barWidth: '10',
0164 barSpacing: '10',
0165 barColor: '#13dafe'
0166 });
0167 $('#sparkline16').sparkline([15, 23, 55, 35, 54, 45, 66, 47, 30], {
0168 type: 'line',
0169 width: '100%',
0170 height: '200',
0171 chartRangeMax: 50,
0172 resize: true,
0173 lineColor: '#13dafe',
0174 fillColor: 'rgba(19, 218, 254, 0.3)',
0175 highlightLineColor: 'rgba(0,0,0,.1)',
0176 highlightSpotColor: 'rgba(0,0,0,.2)',
0177 });
0178
0179 $('#sparkline16').sparkline([0, 13, 10, 14, 15, 10, 18, 20, 0], {
0180 type: 'line',
0181 width: '100%',
0182 height: '200',
0183 chartRangeMax: 40,
0184 lineColor: '#6164c1',
0185 fillColor: 'rgba(97, 100, 193, 0.3)',
0186 composite: true,
0187 resize: true,
0188 highlightLineColor: 'rgba(0,0,0,.1)',
0189 highlightSpotColor: 'rgba(0,0,0,.2)',
0190 });
0191
0192 $('#sparklinedash').sparkline([ 0, 5, 6, 10, 9, 12, 4, 9], {
0193 type: 'bar',
0194 height: '30',
0195 barWidth: '4',
0196 resize: true,
0197 barSpacing: '5',
0198 barColor: '#00c292'
0199 });
0200 $('#sparklinedash2').sparkline([ 0, 5, 6, 10, 9, 12, 4, 9], {
0201 type: 'bar',
0202 height: '30',
0203 barWidth: '4',
0204 resize: true,
0205 barSpacing: '5',
0206 barColor: '#ab8ce4'
0207 });
0208 $('#sparklinedash3').sparkline([ 0, 5, 6, 10, 9, 12, 4, 9], {
0209 type: 'bar',
0210 height: '30',
0211 barWidth: '4',
0212 resize: true,
0213 barSpacing: '5',
0214 barColor: '#03a9f3'
0215 });
0216 $('#sparklinedash4').sparkline([ 0, 5, 6, 10, 9, 12, 4, 9], {
0217 type: 'bar',
0218 height: '30',
0219 barWidth: '4',
0220 resize: true,
0221 barSpacing: '5',
0222 barColor: '#fb9678'
0223 });
0224
0225
0226 }
0227 var sparkResize;
0228
0229 $(window).resize(function(e) {
0230 clearTimeout(sparkResize);
0231 sparkResize = setTimeout(sparklineLogin, 500);
0232 });
0233 sparklineLogin();
0234
0235 });