-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathdangle.css
More file actions
79 lines (66 loc) · 1.04 KB
/
dangle.css
File metadata and controls
79 lines (66 loc) · 1.04 KB
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
/* axis line test */
.axis path {
fill: none;
stroke:#000;
stroke-width: 1.5px;
shape-rendering: crispEdges;
}
/* axis tick marks */
.axis line {
fill: none;
stroke: #000;
stroke-width: 1.1px;
shape-rendering: crispEdges;
}
/* controls the axis text */
.axis text {
fill: #333;
stroke: none;
shape-rendering: crispEdges;
font-size: 16px;
}
.curve0 {
fill: #0000FF;
stroke: #0000FF;
}
.curve1 {
fill: #000000;
stroke: #000000;
}
.curve2 {
fill: #FF0000;
stroke: #FF0000;
}
.curve3 {
fill: #00FF00;
stroke: #00FF00;
}
.curve4 {
fill: #00FFFF;
stroke: #00FFFF;
}
/* controls the area */
.fill {
fill-opacity: 0.2;
}
/* controls the top line in area */
.line {
fill: none;
stroke-width: 6.0px;
}
.line.points {
fill: #058dc7;
stroke: #fff;
stroke-width: 3.0px;
}
/* histogram styles */
.histo.rect { fill: #058dc7; }
.bar.rect {
fill: #058dc7;
stroke: none;
}
.bar.text {
fill: #000;
stroke: none;
font-size: 12px;
}