MATLAB R2014b Graphics --> How to get thin lines (grid, curves, box,...)

Hello, I started to use the new graphics (2014b) and I see quite some interesting things.
However, I am disappointed to see that one of the most interesting aspects of the MATLAB graphs is gone :( To be clear, I was very happy with the graphs having very thin lines (box, curves,...). It gave a very sophisticated look. Now, even when I try to force the thickness of the lines and the box to very low values, I still get an ugly thick box and lines :( The very thin grid lines I used to have are now very rough and thick... Unless I am doing something wrong ? Any solution for that ?
I raised the question in November 17th of last year without any answer so far: http://blogs.mathworks.com/loren/2014/10/14/matlab-r2014b-graphics-part-2-using-graphics-objects/#comment-44544
Please look at the code below. Executed in 2014a or 2014b gives a huge difference in the precision and look of the graphs. Thanks a lot.
if true
% Example of code
x=1:10;
plot(x,x.*x,'-o','Color', 'r','MarkerFaceColor',[1,0.69,0.39],'LineWidth',0.01);
set(gcf, 'Units', 'centimeters');
afFigurePosition = [0.1 18 10 7]; % [pos_x pos_y width_x width_y]
set(gcf, 'Position', afFigurePosition);
set(gcf, 'PaperPositionMode', 'auto');
grid on;
set(gcf, 'Renderer', 'painters');
resol='300';
print('-dmeta', ['-r' resol], '-painters', ['ExamplCurve_' resol '.emf']);
end

2 commentaires

Further references to this issue here: https://github.com/altmany/export_fig/issues/31
you can solve this issue by using
GridAlpha — Grid-line transparency 0.15 (default) | value in the range [0,1] Grid-line transparency, specified as a value in the range [0,1]. A value of 1 means opaque and a value of 0 means completely transparent.
Setting this property sets the associated mode property to manual.
Example: ax.GridAlpha = 0.5

Connectez-vous pour commenter.

Réponses (3)

Seth Kosowsky
Seth Kosowsky le 11 Fév 2016
I had a similar problem with gridlines, and I found the problem is that when matlab renders into meta, it renders the grid lines as lines, iff the gridalpha properties are = 1.0. If gridalpha values are < 1 (default), then it renders the gridlines as rectangle objects. These objects become thick lined things in, say, powerpoint when you 'ungroup' the object. So, for example for the grid lines, set(gca, 'gridalpha', 1) and set(gca, 'minorgridalpha', 1) solves it. (well it did for me). Good luck.

3 commentaires

Thanks Seth, I already used this property which is a nice work around but it does not solve the problem: the grid lines get opaque or transparent but they stay thick. Tanks anyway...
As Yair said in that other thread, there was a fix for the minimum line width bug in R2015b. Have you tried that version?
Hi Mike, Yes I did try this version. Unfortunately, the lines behave strange: the thickness and darkness of the lines is not uniform over the full graph (parts of the graph have thick and dark lines and other parts show thin to invisible lines). :(

Connectez-vous pour commenter.

Saurabh Harsh
Saurabh Harsh le 13 Fév 2015
Axes have a property named GridLineStyle which can be modified to get desired grid line style. There is also the property LineWidth for Axes which controls Width of axes outline, tick marks and grid lines together. These properties and more can be found in the following doc page:

1 commentaire

Samir's "Answer" moved here:
*Hi, As you can see, I used (in my example given above) the "LineWidth" property and it does not help. Something has changed in 2014b that make the lines by default thick and does not allow to thin them down. :(*

Connectez-vous pour commenter.

Alex
Alex le 31 Mar 2015
Have you tried changing the figure parameter GraphicsSmoothing?
set(gcf,'GraphicsSmoothing','off')

2 commentaires

This is not helping :(
Debarupa Som
Debarupa Som le 20 Juil 2019
Modifié(e) : Debarupa Som le 20 Juil 2019
I am having similar problems. Also while copying and pasting the figures in word, some of the grid lines are missing. Tried gridalpha, line width and graphic smoothing but it is not getting any better.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Display Image dans Centre d'aide et File Exchange

Question posée :

le 15 Jan 2015

Modifié(e) :

le 20 Juil 2019

Community Treasure Hunt

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

Start Hunting!

Translated by