La traduction de cette page n'est pas à jour. Cliquez ici pour voir la dernière version en anglais.
Propriétés des objets graphiques
Vous pouvez contrôler le comportement et l’apparence d’un objet graphique particulier en définissant ses propriétés. Pour ce faire, renvoyez l’objet en tant qu’argument de sortie de la fonction qui le crée. Par exemple, la fonction plot
renvoie un objet de type ligne de graphique. Utilisez ensuite la notation à point pour afficher et définir les propriétés.
p = plot(1:10,1:10); p.LineWidth = 3;
plot(1:10,1:10,'LineWidth',3)
. La plupart des fonctions de tracé supportent les arguments nom-valeur.
Propriétés
Fonctions
get | Query graphics object properties |
set | Set graphics object properties |
reset | Reset graphics object properties |
Property Inspector | Open property inspector |
Rubriques
- Modify Graphics Objects
This example shows how to create, display, and modify graphics objects in MATLAB®.
- Graphics Object Hierarchy
Graphics objects are the visual components used by MATLAB® to display data graphically.
- Access Property Values
You can set and query property values or return them to their original (factory default) values.
- Default Property Values
Nearly all graphics object properties have predefined values, but you can define default property values.
- Multilevel Default Values
This example sets default values on more than one level in the hierarchy.
- Default Values for Automatically Calculated Properties
When you create a graph, MATLAB sets certain property values appropriately for the particular graph.
- How MATLAB Finds Default Values
All graphics object properties have values built into MATLAB. You can also define your own default values.
- Factory-Defined Property Values
Plotting functions use factory-defined property values if you do not specify values as arguments or as defaults.
- DPI-Aware Behavior in MATLAB
Learn about DPI-aware behavior that improves the appearance of graphical elements on high-resolution systems.