How to display Xtick values without exponential notation
19 次查看(过去 30 天)
显示 更早的评论
I want to display Xtick without exponentail digits notations. Is there was way to do the same? I tried setting X component to 0 with "fig.XAxis.Exponent=0", however it is not recognized as a property
No appropriate method, property, or field 'XAxis' for class 'matlab.ui.Figure'.
0 个评论
采纳的回答
Ameer Hamza
2020-12-13
It is not the property of figure handle. You need to use axes handle
ax = gca;
ax.XAxis.Exponent=0
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Interactive Control and Callbacks 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!