blob: 20730c2f476f0c0cfd618d4f82d90eb3f4514013 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
.barchart .axis path,
.barchart .axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.bar {
fill: steelblue;
shape-rendering: crispEdges;
}
#legend-left, #legend-right {
font-size: 20px;
}
.nvd3 .nv-group {
fill-opacity: .9 !important;
}
.nvtooltip table td.legend-color-guide div {
display: none;
}
|