how to change the color of a 2-D line on plot graph

5 views (last 30 days)
x=(aug_fires(:,1)) y=(aug_fires(:,2)) r=(aug_fires(:,3)) a=plot(aug_fires(:,1),aug_fires(:,2)) yyaxis right plot(x,r) % i have 2 lines on one graph one showing number of fires the other showing acres burned i want to change the colors of both the lines

Answers (1)

madhan ravi
madhan ravi on 1 Nov 2018
Edited: madhan ravi on 1 Nov 2018
plot(x,r,'r') %plots red line
plot(x,r,'b') %plots blue line

Categories

Find more on Line Plots 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!