MATLAB Function Reference Previous page   Next Page
colordef

Set default property values to display different color schemes

Syntax

Description

colordef enables you to select either a white or black background for graphics display. It sets axis lines and labels to show up against the background color.

colordef white sets the axis background color to white, the axis lines and labels to black, and the figure background color to light gray.

colordef black sets the axis background color to black, the axis lines and labels to white, and the figure background color to dark gray.

colordef none sets the figure coloring to that used by MATLAB Version 4 (essentially a black background).

colordef(fig,color_option) sets the color scheme of the figure identified by the handle fig to the color option 'white', 'black', or 'none'.

h = colordef('new',color_option) returns the handle to a new figure created with the specified color options (i.e., 'white', 'black', or 'none').

Remarks

colordef affects only subsequently drawn figures, not those currently on the display. This is because colordef works by setting default property values (on the root or figure level). You can list the currently set default values on the root level with the statement

You can remove all default values using the reset command:

See the get and reset references pages for more information.

See Also

whitebg

Color Operations for related functions


Previous page  colorbar colormap Next page

© 1994-2005 The MathWorks, Inc.