Hello, I am trying to plot 1 figure with 2 Yaxis. I want one of the Yaxis is dashed. How can I do this?
Thanks!

 採用された回答

Image Analyst
Image Analyst 2018 年 7 月 6 日

3 投票

Try this:
% Plot something.
h = plot(sind(1:1000));
ax = gca % Get handle to current axes object.
xl = xlim(); % Find out x location of the y axis.
% Cover up existing axis with a white line.
line([xl(1), xl(1)], ylim, 'color', 'w', 'LineWidth', 2);
% Draw a dashed line on top of the white line.
line([xl(1), xl(1)], ylim, 'color', 'k', 'LineStyle', '--');

3 件のコメント

Vinh Nguyen
Vinh Nguyen 2018 年 7 月 9 日
編集済み: Vinh Nguyen 2018 年 7 月 9 日
Thanks! It is a good trick. But there is still a thin gray line next to the yaxis left though.
Image Analyst
Image Analyst 2018 年 7 月 9 日
Try adjusting the width of the white line.
Vinh Nguyen
Vinh Nguyen 2018 年 7 月 9 日
Got it by adjusting the width of the yaxis. Thanks for your help.

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および 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