Is there a way to actually make polarplot gridlines black?
19 次查看(过去 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!