App Designer Bar Plot doesnt reset X axis categories
Mostra commenti meno recenti
Hello,
I am using the App Designer and the bar plot with the option "stacked" ie bar(app.myAxes,symbols,data,'stacked'). Unfortunatelly I cannot share my code/app.
The program updates the symbols and data at each iteration but the bar plot x-axis doesnt change (symbols/category names). The graphs do change reflecting the new data.
I believe there is a bug. I have tried literally everything.
cla(app.myAxes,"reset")
reset(app.myAxes)
app.myAxes.NextPlot = 'replaceall';
I also tried inserting a panel and making the axes dynamic. I even tried deleting the full panel and rebuilding it at each iteration.
delete(app.myPanel)
app.myPanel = uipanel(app.myTab);
app.myAxes = uiaxes(app.myPanel);
Any idea how to make the x-axis update/reset???
Thanks
Risposta accettata
Più risposte (1)
yanqi liu
il 12 Feb 2022
0 voti
yes,sir,may be try
set(app.myAxes,'XTick',[]) or
app.myAxes.XTick = [];
Categorie
Scopri di più su Discrete Data Plots in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!