ramnathv/rCharts

Is there a way for me to modify the size of the circle in nvd3's interactive layer?

Closed this issue · 1 comments

I am trying to increase the diameter of the circles (nv-points) of intercative layer.
Unable to achive. How can i do that?

https://i.stack.imgur.com/SrpBt.png

Solution found:
By Increasing the stroke-width in nvd3.css.

.nv-scatter .nv-groups .nv-point.hover, .nvd3 .nv-groups
.nv-point.hover {
      stroke-width: 14px; //(7px -> 14 px)  
      fill-opacity: .5 !important;
      stroke-opacity: .5 !important;
 }