App Designer Bar Plot doesnt reset X axis categories

9 次查看(过去 30 天)
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

采纳的回答

Vasiliki Kosmidou
Vasiliki Kosmidou 2022-2-12
I figured it out. You need to use removecats(symbols) even if your new symbols do not contain the old ones.

更多回答(1 个)

yanqi liu
yanqi liu 2022-2-12
yes,sir,may be try
set(app.myAxes,'XTick',[]) or
app.myAxes.XTick = [];

类别

Help CenterFile Exchange 中查找有关 Discrete Data Plots 的更多信息

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by