-
Notifications
You must be signed in to change notification settings - Fork 0
/
linechartDir.css
120 lines (117 loc) · 2.07 KB
/
linechartDir.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
html, body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
font-family: 'Exo 2', sans-serif !important;
font-size: 12px;
}
body {
background: #f1f1f1 url(../img/cream_dust.png) top center repeat;
min-height: 100%;
}
/*
* Chart style
*/
#dashboard .row {
margin-left: 0;
margin-right: 0;
}
.chart {
height: 350px;
padding: 0;
margin: 10px 0 10px 0;
border: solid 1px #e7e7e7;
border-radius: 6px;
background-color: #fafafa;
text-align: center;
}
.chart-title {
border-top-right-radius: 6px;
border-top-left-radius: 6px;
border-bottom: solid 1px #e7e7e7;
background-color: #f8f8f8;
font-weight: bold;
font-size: 15px;
height: 30px;
padding: 4px;
}
.chart-title h5 {
font-weight: bold;
}
.chart-area {
width: 100%;
height: 320px;
}
.chart-loading {
background-image: url(../img/spinner.gif);
background-repeat: no-repeat;
background-position: center center;
}
.chart-reloading {
background-image: url(../img/spinner-small.gif);
background-repeat: no-repeat;
background-position: center right;
}
.chart-last-value {
font-size: 18px;
font-weight: bold;
}
.chart-last-date {
font-size: 14px;
}
.chart-axes-label {
font-weight: 600;
font-size: 13px;
fill: #535447;
}
.chart-point {
fill: #ffffff;
stroke-width: 1;
}
svg {
margin-top: 6px;
}
path {
fill: none;
}
.axis path,
.axis line {
fill: none;
stroke: grey;
stroke-width: 1;
shape-rendering: crispEdges;
}
.axis text {
font-size: 11px;
fill: #808080;
}
.overlay {
fill: none;
pointer-events: all;
}
.grid .tick {
stroke: #E3E3E3;
stroke-width: 1;
stroke-dasharray: 3px 3px;
opacity: 0.7;
shape-rendering: crispEdges;
}
.grid path {
stroke-width: 0;
}
.focus line {
stroke: #B0B0B0;
stroke-width: 1;
shape-rendering: crispEdges;
}
.focus text.ttip {
padding: 2px;
font-size: 14px;
pointer-events: none;
font-weight: bold;
vertical-align: middle;
}
.focus text.timetip {
font-size: 12px;
}