Ben
Ben

Reputation: 342

Matlab Increase thickness of lines of 3d bars

I have a 3D bar chart. Let me clarify, I do not want to edit the width of the bar graph as I have already done that. However, there are black lines that outline each bar. Is there a way to make these thicker?

Everything I have search pays reference to the width of the bars themselves, not the black lines enclosing them.

Upvotes: 0

Views: 154

Answers (1)

Ben
Ben

Reputation: 342

At last, I found the answer to my own question the minute after I ask it.

Simply:

set(j,'LineWidth',1.5)

EDIT: As Luis mentioned, j is the handle such that j = bar3(...)

Sorry should have included that.

Upvotes: 1

Related Questions