How to correct cluttered axes in my plot in Matlab GUI?

1 visualización (últimos 30 días)
Before I plotted my scattering figure, the plot module in my GUI looked like this:
After I plot my data in the GUI with the code, it looks like this:
Could someone please tell me how to correct the cluttered X axis?
The code I used to plot this image is:
scatter(app.UIAxes,ppangle,aaangle,[ ],totalcounts,'filled')
colorbar(app.UIAxes)
xlabel(app.UIAxes,'\Phi')
ylabel(app.UIAxes,'\theta')

Respuesta aceptada

Benjamin Kraus
Benjamin Kraus el 5 de En. de 2021
It looks like you've set the XTickMode (and possibly also XTickLabelMode) to manual.
This means that when you add new data to the axes, the existing tick values and labels are being preserved.
You need to set your XTickMode (and possible XTickLabelMode) back to auto, either in App Designer:
Or manually in your code:
xticks(app.UIAxes, 'auto');
xticklabels(app.UIAxes, 'auto');

Más respuestas (0)

Categorías

Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by