How to position the default interactivity bar?
조회 수: 1 (최근 30일)
이전 댓글 표시
I'm referring to the toolbar with things like Zoom in, Zoom out, Home, etc. Right now, its default position is to cover my xticklabel. Is there a way I can specify its position?
Thanks.
댓글 수: 0
답변 (1개)
Ajay Pattassery
2020년 2월 21일
I am not sure of moving the figure toolbar, but you could remove it from the figure using the following command
ax = gca;
ax.Toolbar.Visible = 'off'; % Turns off the axes toolbar
댓글 수: 2
Ajay Pattassery
2020년 2월 24일
편집: Ajay Pattassery
2020년 2월 24일
I assume you have reason to keep the xticklabels on the top of the graph.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!