MATLAB: Make axis background transparent

axis transparencyexportpowerpoint

Is there an alpha parameter that sets the transparency of a plot's background axis color? I would like to be able to export a plot to Powerpoint and then overlay it semi-transparently onto other Powerpoint objects.

Best Answer

For traditional axes, you can set the "Color" property to "none"
ax = axes("Color","none")