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

2 vues (au cours des 30 derniers jours)
Zihao Liu
Zihao Liu le 3 Jan 2021
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')

Réponse acceptée

Benjamin Kraus
Benjamin Kraus le 5 Jan 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');

Plus de réponses (0)

Catégories

En savoir plus sur Develop Apps Using App Designer dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by