필터 지우기
필터 지우기

Can I change axes scale color?

조회 수: 1 (최근 30일)
Teemu Juujärvi
Teemu Juujärvi 2015년 8월 27일
편집: dpb 2015년 8월 28일
Normally axes scales are black, for example scale 1 to 10. Can I change color of these scale numbers because my backround color is so dark that black numbers is not the best color for the visibility.
Teemu

답변 (1개)

dpb
dpb 2015년 8월 27일
편집: dpb 2015년 8월 28일
Properties are '[x|y]color'
doc set
doc axes % see properties available
May be a method in newer releases besides set as well.
Note you can use
hAx=axes; % create an axes object, return handle
set(hAx) % set without a parameter pair will return all and current/default values
The above is an easy way to find what properties are available for any object and a concise listing of current values that can look through for such things as you're trying to find here. Look for likely candidates for something related to what property it is you're trying to modify.

카테고리

Help CenterFile Exchange에서 Specifying Target for Graphics Output에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by