How can I select programmatically AxesToolbar tool?

1 Ansicht (letzte 30 Tage)
Martti Ilvesmäki
Martti Ilvesmäki am 10 Aug. 2021
Beantwortet: Thomas Fournier am 11 Aug. 2021
I'm building an app and would like to use only brush tool for one of my plots and pre-select this for user. How can I select at startup function the brush tool programmatically?
So far I have made brush the only availabe option:
% Create axestoolbar with only brush
axtoolbar(app.UIAxes,{'brush'});

Antworten (1)

Thomas Fournier
Thomas Fournier am 11 Aug. 2021
Just doing this after your scatter should work:
x = rand(20,1);
y = rand(20,1);
scatter(x,y)
brush('on')

Kategorien

Mehr zu Introduction to Installation and Licensing finden Sie in Help Center und File Exchange

Produkte


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by