Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
21627 kshitij.so 1
/*Sparklines */
2
 
3
/* Sparkline plugin Section starts */
4
 
5
$("#status1").sparkline([5,6,7,9,9,5,9,6,5,6,6,7,7,6,7,8,9,5 ], {
6
    type: 'line',
7
    width: '80',
8
    height: '20',
9
    lineColor: '#436B91',
10
    fillColor: '#fff'});
11
 
12
$("#status2").sparkline([5,6,7,4,9,5,9,6,4,6,6,7,8,6,7,4,9,5 ], {
13
    type: 'line',
14
    width: '80',
15
    height: '20',
16
    lineColor: '#436B91',
17
    fillColor: '#fff'});
18
 
19
$("#status3").sparkline([9,6,7,5,9,5,9,7,5,6,3,7,7,6,7,8,8,5 ], {
20
    type: 'line',
21
    width: '80',
22
    height: '20',
23
    lineColor: '#436B91',
24
    fillColor: '#fff'});
25
 
26
$("#status4").sparkline([5,2,7,9,9,4,9,6,5,9,6,7,5,6,7,8,4,5 ], {
27
    type: 'line',
28
    width: '80',
29
    height: '20',
30
    lineColor: '#436B91',
31
    fillColor: '#fff'});
32
 
33
$("#status5").sparkline([7,6,3,9,9,5,4,6,6,9,6,7,7,6,4,8,9,5 ], {
34
    type: 'line',
35
    width: '80',
36
    height: '20',
37
    lineColor: '#436B91',
38
    fillColor: '#fff'});
39
 
40
$("#status6").sparkline([4,6,7,8,9,5,3,6,5,6,7,5,7,2,7,8,7,5 ], {
41
    type: 'line',
42
    width: '80',
43
    height: '20',
44
    lineColor: '#436B91',
45
    fillColor: '#fff'});
46
 
47
$("#status7").sparkline([3,6,3,9,9,5,4,6,5,6,4,9,7,6,7,8,8,5 ], {
48
    type: 'line',
49
    width: '80',
50
    height: '20',
51
    lineColor: '#436B91',
52
    fillColor: '#fff'});
53
 
54
$("#todayspark1").sparkline([8,11,9,12,10,9,13,11,12,11,10,12,11,], {
55
    type: 'bar',
56
    height: '30',
57
    barWidth: 5,
58
    barColor: '#999'});
59
 
60
$("#todayspark2").sparkline([8,11,9,12,10,9,13,11,12,11,10,12,12,11,10,12,11,], {
61
    type: 'bar',
62
    height: '30',
63
    barWidth: 5,
64
    barColor: '#C5CED6'});
65
 
66
$("#todayspark3").sparkline([8,11,9,12,10,9,13,11,12,11,10,12,11,12,11,9], {
67
    type: 'bar',
68
    height: '30',
69
    barWidth: 10,
70
    barColor: '#436B91'});
71
 
72
$("#todayspark4").sparkline([8,11,9,12,10,9,13,11,12,11,10,12,11,12,11,14,13], {
73
    type: 'bar',
74
    height: '30',
75
    barWidth: 10,
76
    barColor: '#486b60'});
77
 
78
$("#todayspark5").sparkline([3,6,3,9,9,5,4,6,5,6,4,9,7,9,7,4,6,8,9,5,6,7,8,6,7,2,4,6,3,7,8,9,7,5,8,9,5,7,8,8,5 ], {
79
    type: 'line',
80
    width: '250',
81
    height: '30',
82
    lineColor: '#436B91',
83
    fillColor: '#efefef'});
84
 
85
 
86
/* Sparkline plugin section ends */
87