Main Content

La traducción de esta página aún no se ha actualizado a la versión más reciente. Haga clic aquí para ver la última versión en inglés.

Propiedades de objetos de gráficas

Vea y establezca propiedades de objetos de gráficas, defina valores predeterminados

Para poder controlar el comportamiento y la apariencia de un objeto de gráficas en particular, establezca sus propiedades. Para ello, devuelva el objeto como un argumento de salida desde la función que lo crea. Por ejemplo, la función plot devuelve un objeto línea de gráfica. Entonces, use la notación punto para ver y establecer propiedades.

p = plot(1:10,1:10);
p.LineWidth = 3; 
De manera alternativa, es posible establecer propiedades mediante pares de argumentos nombre-valor en el momento de crear el objeto, como plot(1:10,1:10,'LineWidth',3). La mayoría de las funciones de representación gráfica es compatible con pares de argumentos nombre-valor.

Propiedades

expandir todo

Root PropertiesGraphics environment and state information
Figure PropertiesControl appearance and behavior of figure window
Axes Properties Axes appearance and behavior
PolarAxes PropertiesPolar axes appearance and behavior
GeographicAxes PropertiesControl geographic axes appearance and behavior
TiledChartLayout PropertiesTiled chart layout appearance and behavior (desde R2019b)
Area PropertiesArea chart appearance and behavior
Bar PropertiesBar chart appearance and behavior
BoxChart PropertiesControl box chart appearance and behavior (desde R2020a)
BubbleChart PropertiesBubble chart appearance and behavior (desde R2020b)
BubbleCloud PropertiesBubble cloud appearance and behavior (desde R2021a)
Contour PropertiesContour chart appearance and behavior
ErrorBar PropertiesError bar chart appearance and behavior
DonutChart PropertiesDonut chart appearance and behavior (desde R2023b)
GeographicBubbleChart PropertiesControl geographic bubble chart appearance and behavior
HeatmapChart PropertiesHeatmap chart appearance and behavior
Line PropertiesChart line appearance and behavior
ParallelCoordinatesPlot PropertiesControl parallel coordinates plot appearance and behavior
PieChart PropertiesPie chart appearance and behavior (desde R2023b)
Quiver PropertiesQuiver chart appearance and behavior
Scatter PropertiesScatter chart appearance and behavior
ScatterHistogramChart PropertiesControl scatter histogram chart appearance and behavior
StackedAxesProperties PropertiesAppearance and behavior of individual axes in stacked plot
StackedLineChart PropertiesStacked plot appearance and behavior
StackedLineProperties PropertiesAppearance and behavior of individual lines in stacked plot
Stair PropertiesStair chart appearance and behavior
Stem PropertiesStem chart appearance and behavior
Surface PropertiesChart surface appearance and behavior
WordCloudChart PropertiesControl word cloud chart appearance and behavior
AnimatedLine PropertiesLine animation appearance and behavior
Image PropertiesImage appearance and behavior
Light PropertiesLight appearance and behavior
Line PropertiesPrimitive line appearance and behavior
Patch PropertiesPatch appearance and behavior
Polygon PropertiesPolygon appearance and behavior
Rectangle PropertiesRectangle appearance and behavior
Surface PropertiesPrimitive surface appearance and behavior
Text PropertiesAxes text appearance and behavior
FunctionLine PropertiesLine chart appearance and behavior
ImplicitFunctionLine PropertiesImplicit line chart appearance and behavior
ParameterizedFunctionLine PropertiesParameterized line chart appearance and behavior
FunctionContour PropertiesFunction contour chart appearance and behavior
FunctionSurface PropertiesSurface chart appearance and behavior
ImplicitFunctionSurface PropertiesImplicit surface chart appearance and behavior
ParameterizedFunctionSurface PropertiesParameterized surface chart appearance and behavior
Group PropertiesGroup object appearance and behavior
Transform PropertiesTransform object appearance and behavior
ColorBar PropertiesColorbar appearance and behavior
Legend PropertiesLegend appearance and behavior
BubbleLegend PropertiesBubble legend appearance and behavior (desde R2020b)
CategoricalRuler PropertiesControl axis with categorical values
DatetimeRuler PropertiesControl axis with datetime values
DurationRuler PropertiesControl axis with duration values
NumericRuler PropertiesControl axis with numeric values
GeographicRuler PropertiesControl axis with geographic values
Arrow PropertiesArrow appearance and behavior
DoubleEndArrow PropertiesDouble end arrow appearance and behavior
Ellipse PropertiesEllipse appearance and behavior
Line PropertiesAnnotation line appearance and behavior
Rectangle PropertiesAnnotation rectangle appearance and behavior
TextArrow PropertiesText arrow appearance and behavior
TextBox PropertiesText box appearance and behavior

Funciones

getQuery graphics object properties
setObtener las propiedades de los objetos de gráficas
resetReset graphics object properties
Property InspectorOpen property inspector

Temas