Is there a named option that controls the thickness of the line segments that appear in BarChart with options ChartLayout -> "Stacked", Joined->True? It is not EdgeForm, since ChartBaseStyle -> EdgeForm[None] is the value set in the following example:

It's unclear what Directive can be passed. Changing Thickness value in ChartBaseStyle -> {Thickness[0.0001], EdgeForm[None]} has no effect for example.

Optionvalues mentioned in the post. – alancalvitti Oct 6 '12 at 1:22BaseStyle -> Thicketc. will do it. – Mike Honeychurch Oct 6 '12 at 1:26Thicknessnumerically:BaseStyle -> Directive[Thickness[0.001]]. However theColordisappears.. . curious why thisOptionis segregated in BaseStyle, not in ChartBaseStyle` – alancalvitti Oct 6 '12 at 1:30BaseStyle -> AbsoluteThickness[5]works but messes up ticks. So you might have to explicitly specify a tick style to overcome that. – Mike Honeychurch Oct 6 '12 at 1:33