Multi line color in graph
3 views (last 30 days)
Show older comments
Deepa Maheshvare
on 5 Nov 2019
Commented: Star Strider
on 7 Nov 2019
Hi,
While trying to plot a graph
plot(1:10, rand(10,10))
Each line has a different color.
Is it possible to vary the color scale from a darker shade to lighter shade? For instance, from black to grey
0 Comments
Accepted Answer
Star Strider
on 5 Nov 2019
Try this:
cmap = colormap(gray(10));
figure
hp = plot(1:10, rand(10));
set(gca,'ColorOrder',cmap)
Experiment to get dufferent results.
12 Comments
Star Strider
on 7 Nov 2019
@Deepa Maheshvare — Thank you for following up. I am happy that it worked for you.
More Answers (0)
See Also
Categories
Find more on Orange 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!
