blob: d6e30fc097c9727739fac497688c6391e5037899 (
plain)
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
|
#graph {
margin: 0 auto;
text-align: center;
}
/*
path {
stroke-width: 2;
fill: none;
}
.axis path, .axis line {
fill: none;
stroke: grey;
stroke-width: 1;
shape-rendering: crispEdges;
}
#changepoint-table {
margin: 0 auto;
}
*/
.line {
fill: none;
stroke: blue;
clip-path: url(#clip);
}
circle {
clip-path: url(#clip);
fill: blue;
}
.zoom {
cursor: move;
fill: none;
pointer-events: fill;
}
|