I am trying to implement a stacked barchart, where one of the bar data sets has a semitransparent color and an opaque stroke. However, the stroke should be positioned inside and not outside of the bar, which is default behavior. I am not aware of any possible attribute or style setting with which this could be achieved?
I am defining the stroke with
.attr("stroke", function(d) { return zStroke(d.key); })
.attr("stroke-width", (function(d) { return zStrokeWidth(d.key) + "px"; }))
where zStroke and zStrokeWidth return the color and width of the bar data series.