필터 지우기
필터 지우기

Show tick marks/grid/axes on top of plot

조회 수: 18 (최근 30일)
Dennis Premoli
Dennis Premoli 2022년 5월 6일
답변: Voss 2022년 5월 6일
Hi everyone,
I'm currently plotting a polarscatter plot with a LOT of data on it. Therefore, the data obscures the entirety of the y-axis and the grid. Is there any way to force the axes on top of the graph, or even just the y axis labels and grid?

채택된 답변

Voss
Voss 2022년 5월 6일
Here's a start, maybe. You can find other PolarAxes properties you might need to tweak, and fine-tune them similarly.
polarscatter(2*pi*rand(10000,1),rand(10000,1));
set(gca(), ...
'Layer','top', ...
'LineWidth',2, ...
'FontWeight','bold', ...
'GridAlpha',1, ...
'MinorGridAlpha',1, ...
'RColor',[0 0 0], ...
'ThetaColor',[0 0 0]);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Calendar에 대해 자세히 알아보기

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by