MATLAB: How to change the renderer for the Help browser

htmlrendererMATLABwebutils

I want to change the renderer used by MATLAB to view the Help browser and access the documentation.
How do I do this?

Best Answer

To change the Help browser renderer, use the command "webutils.htmlrenderer".
There are different options that can be used depending on your system:
webutils.htmlrenderer('basic'); % This command tell MATLAB to use ICE browser which will result in a more stable, although cosmetically degraded experience when using the documentation center.
webutils.htmlrenderer('chromium');
webutils.htmlrenderer('mozilla'); % Only on MAC or 32-bit Windows
webutils.htmlrenderer('ie'); % Only on 64-bit Windows
webutils.htmlrenderer('safari'); % Only on MAC
To restore to MATLAB's default renderer, use:
webutils.htmlrenderer('default');