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

조회 수: 1 (최근 30일)
Zihao Liu
Zihao Liu 2021년 1월 3일
답변: Benjamin Kraus 2021년 1월 5일
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')

채택된 답변

Benjamin Kraus
Benjamin Kraus 2021년 1월 5일
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');

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by