Setting Matlab line plot grid transparency
Show older comments
Hello!
Is there a way to adjust the 2D line plot grid transparency/visibility/opacity in Matlab?
Thank you, Uku
Answers (3)
Walter Roberson
on 1 Jul 2012
0 votes
Sorry, no there is not. There is GridLineStyle and MinorGridLineStyle properties of the axes. I do not recall at the moment whether the LineWidth axes property affects the grid lines. None of those properties can change the transparency.
Uku
on 1 Jul 2012
0 votes
Jerry Gregoire
on 27 Aug 2013
Edited: Jerry Gregoire
on 27 Aug 2013
0 votes
% Try this
% Create an axes in a figure with grid lines
NF = figure;
grid on;
hGridAxes = get(NF, 'children');
% make grid transparent
set(hGridAxes, 'Color', 'none')
% Set the axes parent to the figure that you want to overlay
set(hGridAxes, 'parent', handleOfFigureToOverLay);
You will have to play with the position of the hGridAxes and perhaps the tick labels, but this should get you started.
I have a figure with many axes produced by 'Panel' and needed a grid overlay. This work for me.
2 Comments
Walter Roberson
on 27 Aug 2013
I think the original poster wanted to be able to set the alpha of the line transparency, not turn the lines off.
Jerry Gregoire
on 14 Nov 2013
Yes. You are correct.
Categories
Find more on Graphics Performance in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!