Link Axes in App Designer

I am using App Designer 19a and would like to link between X axis of several uiAxes objects while zooming in and out.
I tried to create an event listener but 'PostSet' is not recognized buy uiAxes .
Any idea how can it be done?
Thank you.

Risposte (2)

You can use the linkaxes command like this:
plot(app.UIAxes,rand(100,1));
plot(app.UIAxes2,rand(100,1));
linkaxes([app.UIAxes app.UIAxes2],'x');
chrisw23
chrisw23 il 28 Apr 2022

0 voti

In AppDesigner I link the XLim property. It may be required to make the listener a private property of the app.
app.linkXLim = linkprop([app.UIAxes app.UIAxes2],'XLim')

Categorie

Scopri di più su Develop Apps Using App Designer in Centro assistenza e File Exchange

Richiesto:

il 29 Apr 2019

Risposto:

il 28 Apr 2022

Community Treasure Hunt

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

Start Hunting!

Translated by