krispo / angular-nvd3

AngularJS directive for NVD3 reusable charting library (based on D3). Easily customize your charts via JSON API.
http://krispo.github.io/angular-nvd3
MIT License
1.29k stars 378 forks source link

x-Axis #703

Open VortilionNli opened 7 years ago

VortilionNli commented 7 years ago

Hi,

how can I make the x-Axis have a thick black line as well (line in standard charts!)? The charts from angular-nvd3 only render the x-Axis labels, but no line...

VortilionNli commented 7 years ago

Found it, if anyone's interested:

y-Axis:

.nv-y .nv-axis g path.domain {
    stroke: black;
    stroke-opacity: 1;
    stroke-width: 2;
}

x-Axis:

.nv-axis.nv-x path.domain {
    stroke-opacity: 1;
    stroke-width: 2;
}