필터 지우기
필터 지우기

figure windows background color

조회 수: 12 (최근 30일)
SonOfAFather
SonOfAFather 2012년 11월 7일
Can I change the backgorund color from white to black to show better contrast when using the cyan and yellow lines. I am plotting six line and need them to be differant colors I am already using the broken line properties.
thanks in advance

답변 (1개)

Jessica Lam
Jessica Lam 2012년 11월 8일
figure1=figure('Color',[0 0 0],'InvertHardcopy','off');
axes1 = axes('Parent',figure1,...
'YColor',[1 1 1],...
'XColor',[1 1 1],...
'Color',[0 0 0]);
hold(axes1,'all');
plot(rand(10,6));

카테고리

Help CenterFile Exchange에서 Legend에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by