How to make a marker circle bold?

210 views (last 30 days)
Leon
Leon on 24 Jan 2020
Commented: Leon on 24 Jan 2020
Below is my command to make a simple plot. How do I make the circle line of the marker bold without making the circle bigger?
plot(x, y, 'ro');
Thanks.

Accepted Answer

Jim Riggs
Jim Riggs on 24 Jan 2020
Edited: Jim Riggs on 24 Jan 2020
plot(x, y, 'ro', 'linewidth',2);
  2 Comments
Jim Riggs
Jim Riggs on 24 Jan 2020
You can make the linewidth greater than 2 if you want more bolding.
Leon
Leon on 24 Jan 2020
Interesting. I thought linewidth is for the lines connecting the markers only.

Sign in to comment.

More Answers (0)

Tags

Products


Release

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!