Is there a way to actually make polarplot gridlines black?
6 ビュー (過去 30 日間)
古いコメントを表示
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?
0 件のコメント
回答 (2 件)
Tom Veeken
2018 年 7 月 4 日
編集済み: Tom Veeken
2018 年 7 月 4 日
This will make the gridlines solid black
pax.GridColor = 'k';
pax.GridAlpha = 1;
0 件のコメント
Image Analyst
2017 年 1 月 12 日
It's not 'black', it's 'k' - you know, from CMYK fame.
pax.GridColor = 'k';
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Polar Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!