2

I have one question. How to bold legend and axis in 3d scatter plot in Matlab? Anyone can help me. Thank you

danjoro
  • 111
  • 10

1 Answers1

1

Run this after the figure is created, it sets all text elements of the current figure to bold:

set(findall(gcf,'type','text'), 'FontWeight','bold')

It is not 3D scatter specific and is answered here as well: Changing Fonts in Matlab Plots

Community
  • 1
  • 1
bastelflp
  • 9,362
  • 7
  • 32
  • 67