I am not clear that how to override nvd3 CSS and apply it to the different line charts.
In Html, there are two div for line plots.
<div id="offsetDiv">
<div id="plot1" class='with-3d-shadow with-transitions'>
<svg></svg>
</div>
<div id="offsetDiv">
<div id="plot1" class='with-3d-shadow with-transitions'>
<svg></svg>
</div>
In a CSS file, I can modify the value of opacity to apply. Also, I want to have different value to apply another plot.
.nvd3.nv-line .nvd3.nv-scatter .nv-groups .nv-point {
fill-opacity: 0.5;
stroke-opacity: 1;
}
.something-new-class-name {
fill-opacity: 0;
stroke-opacity: 0;
}
I tried to put new class name in div, but it doesn't work. Please point out what is wrong.
Thanks,