Remove colorbar border but keep tick labels

조회 수: 8 (최근 30일)
John Cruce
John Cruce 2023년 8월 3일
댓글: John Cruce 2023년 8월 3일
I'm needing to remove the outline around my colorbar. When I set the colorbar edgecolor to none (hcb.EdgeColor = 'none'), it does remove the outline, but it also removes my YTickLabels. Any idea why it's doing so and how to maintain my labels while removing the outline around the colorbar?
  댓글 수: 2
Shubham
Shubham 2023년 8월 3일
Hi John
Can you try adjusting the LineWidth property of the colorbar's axis?
By setting "hcb.LineWidth" to very small value ,I think you can effectively remove the outline of the colorbar while keeping the tick labels visible. You cannot keep it to 0 because it will give an error. I tried this on my end, but I am not sure if this is what you want to do.
John Cruce
John Cruce 2023년 8월 3일
I did consider this and tried to adjust to a very small value (e.g., hcb.LineWidth=0.000001), but the outline of the colorbar is still pretty apparent in my figure

댓글을 달려면 로그인하십시오.

채택된 답변

Dyuman Joshi
Dyuman Joshi 2023년 8월 3일
편집: Dyuman Joshi 2023년 8월 3일
The closest you can do is turn the outline of the colorbar off. The axis is integrated with ticks and tick labels.
surf(peaks)
c = colorbar;
c.Box = 0;
c.EdgeColor = [0 0.3 0];

추가 답변 (0개)

카테고리

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

제품


릴리스

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by