bar
Creates bars in an axis and returns handles of the bars.
Syntax
h = bar(x, y)
h = bar(x-categories, y)
h = bar(..., width)
h = bar(..., style)
h = bar(..., property, value, ...)
h = bar(hAxes, ...)
Inputs
- x,y
- Range of the x and y axes.
- x-categories
- Names of the categories.
- width
- The bar width.
- style
- Style of each groups of bars. Either "grouped" (default style) or "stacked."
- property
- Properties that control the appearance or behavior of the graphics object.
- value
- Value of properties.
- hAxes
- Axis handle.
Outputs
- h
- Handle of the bar graphics object.
Examples
clf;
a=bar([1 2 3], [1 3 2; 3 2 1]);
clf;
a=bar([1 2 3], [1 3 2; 3 2 1], 'facecolor', [141 179 226]);
get(a)
clf;
bar({'apple', 'banana'}, [1 2]);
Comments
If there is no axis, one will be created . If x is omitted, the index of y is used as data to associate with the x axis. If the first argument of bar() is an axis handle, the bars will be created in that axis.