How to change exponent position in an axis of a surface plot

28 views (last 30 days)
How do I change the position of the 10^(-3) in one of the grounded axes shown in this plot above!!

Accepted Answer

dpb
dpb on 5 May 2022
Edited: dpb on 7 May 2022
It's an undocumented property --
hAx=gca; % get axes handle
hY=hAx.YRuler; % and the subject axis ruler handle of interest
>> hY.SecondaryLabel
ans =
Text (\times10^{5}) with properties:
String: '\times10^{5}'
FontSize: 10
FontWeight: 'normal'
FontName: 'Helvetica'
Color: [0.15 0.15 0.15]
HorizontalAlignment: 'right'
Position: [-2.2905 1.342e+05 -2.0262]
Units: 'data'
Show all properties
>>
is the text() object handle -- you can set the 'Position' as desired

More Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Tags

Products


Release

R2022a

Community Treasure Hunt

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

Start Hunting!