How to display Xtick values without exponential notation

8 visualizaciones (últimos 30 días)
jinang patel
jinang patel el 13 de Dic. de 2020
Respondida: Ameer Hamza el 13 de Dic. de 2020
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'.

Respuesta aceptada

Ameer Hamza
Ameer Hamza el 13 de Dic. de 2020
It is not the property of figure handle. You need to use axes handle
ax = gca;
ax.XAxis.Exponent=0

Más respuestas (0)

Categorías

Más información sobre Specifying Target for Graphics Output en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by