anyway to get list of linestyle in uiaxes of app

5 ビュー (過去 30 日間)
Yu Li
Yu Li 2019 年 9 月 2 日
編集済み: Adam Danz 2019 年 9 月 5 日
Hi:
I have an UIAxes in app and I need the list of line style of it, the command I use is:
lineStyle=app.UIAxes.LineStyleOrder;
the question is that, no matter how much plot I have inside that UIAxex, the result is always '-'. but what I need, is a list of it. for example, I have a regular plot that created in matlab command window:
x=1:10;
y1=x;
y2=x.^2;
y3=x.^3;
plot(x,y1,'-')
hold on
plot(x,y2,'--')
hold on
plot(x,y3,':')
then, I use command:
h = findobj(gca,'Type','line');
lineStyle={h(:).LineStyle}
where 'lineStyle' is what I wanted. is there anyway to get the same result in UIAxes insdie app-deisgner?
Thanks!
Yu
  1 件のコメント
dpb
dpb 2019 年 9 月 3 日
Never used the UIAxis so "I know nuthink!" but looks like a crippled subset of regular axes. My suggestion would be to save the line handles when plotting so can query the array of them for their properties.
Or you could try Yair's FEX submission to look for hidden properties in the UIAxes object and see if one of those might contain the information you're looking for.

サインインしてコメントする。

採用された回答

Adam Danz
Adam Danz 2019 年 9 月 3 日
編集済み: Adam Danz 2019 年 9 月 5 日
For an axis or uiaxis, the LineStyleOrder default value is '-' no matter what you've plotted unless that property was changed for the axis or for the graphics root. Matlab cycles through the line styles only after using all the colors contained in the ColorOrder property.
To get a list of line styles that exist in your axes, you can apply your last 2 lines of code to a UIAxes,
h = findobj(app.UIAxes,'Type','line');
lineStyle={h.LineStyle};

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGraphics Object Properties についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by