Is there a way to actually make polarplot gridlines black?

조회 수: 1 (최근 30일)
Benjamin Cowen
Benjamin Cowen 2017년 1월 12일
편집: Tom Veeken 2018년 7월 4일
I know the documentation claims this is possible, but
pax = gca;
pax.GridColor = 'black';
keeps it as gray. I want the grid lines to be a dark solid black. When I move the figure to PPT or word, I get these measly gray lines that are almost undetectable when printed. Surely, we can just make the gridlines solid black right?

답변 (2개)

Tom Veeken
Tom Veeken 2018년 7월 4일
편집: Tom Veeken 2018년 7월 4일
This will make the gridlines solid black
pax.GridColor = 'k';
pax.GridAlpha = 1;

Image Analyst
Image Analyst 2017년 1월 12일
It's not 'black', it's 'k' - you know, from CMYK fame.
pax.GridColor = 'k';

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by