How to change line style of a plotted graph?

Hello,
I would like to change the linestyle of a plotted graph for making color blind people to understand my graph. The graph is already plotted. I have no basic data (anymore), but only the saved figure. I tried the follwing:
hline = findobj(gcf, 'type', 'line')
set(hline(1),'LineStyle',':')
But that didnt seem to work.I added my graph.
Does anyone knows how to do this?
Roe

6 commentaires

Thorsten
Thorsten le 17 Déc 2014
You forgot to add the graph; and the saved figure file would also be helpful.
Roel
Roel le 17 Déc 2014
Sorry, it is added now.
matt dash
matt dash le 17 Déc 2014
Your code works fine for me on your graph. Make sure that "gcf" is indeed the figure you think it is (i.e. do you have other figures open too?)
Roel
Roel le 18 Déc 2014
Mmm, i do not know what i am doing wrong. I have indeed only one figure open.I also cleared my workspace. Does other versions of matlab have influence maybe?
Roel
Roel le 18 Déc 2014
I do manage to change the legend of the figure. But the plotted lines in the figure remain the same.
Roel
Roel le 18 Déc 2014
I found my mistake, had to change 1 in hline(1) to 7,8 or 9. Thanks anyway.

Connectez-vous pour commenter.

 Réponse acceptée

If we test this example
plot(1:44)
hline = findobj(gcf, 'type', 'line')
set(hline(1),'LineStyle','--')
It seems to work

Plus de réponses (0)

Catégories

En savoir plus sur Creating, Deleting, and Querying Graphics Objects dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by