Is there a way to actually make polarplot gridlines black?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Antworten (2)
Tom Veeken
am 4 Jul. 2018
Bearbeitet: Tom Veeken
am 4 Jul. 2018
This will make the gridlines solid black
pax.GridColor = 'k';
pax.GridAlpha = 1;
0 Kommentare
Image Analyst
am 12 Jan. 2017
It's not 'black', it's 'k' - you know, from CMYK fame.
pax.GridColor = 'k';
0 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!