Multi line color in graph

3 views (last 30 days)
Deepa Maheshvare
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

Accepted Answer

Star Strider
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
Deepa Maheshvare
Deepa Maheshvare on 7 Nov 2019
Walter, I am uisng Windows OS. I upgraded from 2019a to 2019b. The solution that was posted earlier works fine now. Thank you
Star Strider
Star Strider on 7 Nov 2019
@Deepa Maheshvare — Thank you for following up. I am happy that it worked for you.

Sign in to comment.

More Answers (0)

Products


Release

R2019a

Community Treasure Hunt

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

Start Hunting!