Borrar filtros
Borrar filtros

Is there a way to actually make polarplot gridlines black?

9 visualizaciones (últimos 30 días)
Benjamin Cowen
Benjamin Cowen el 12 de En. de 2017
Editada: Tom Veeken el 4 de Jul. de 2018
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?

Respuestas (2)

Tom Veeken
Tom Veeken el 4 de Jul. de 2018
Editada: Tom Veeken el 4 de Jul. de 2018
This will make the gridlines solid black
pax.GridColor = 'k';
pax.GridAlpha = 1;

Image Analyst
Image Analyst el 12 de En. de 2017
It's not 'black', it's 'k' - you know, from CMYK fame.
pax.GridColor = 'k';

Categorías

Más información sobre Polar Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by