In Rickshaw, I want to color one specific Y-axis grid-line different than the other Y-axis grid-lines when using a Rickshaw.Graph.Axis.Y.Scaled
axis. I can do this with jQuery ( specifically 32° is the line I care about):
$('#container_id * svg * g[data-y-value=32] > line')
.css('stroke','rgb(255,0,0)')
.css('stroke-width','2')
Is there an idiomatic, better, or safer way of coloring a specific line grid-line?