![]() | Download Help (Windows Only) |
Owning Class: plots
Requires: MathScript RT Module
bar(y)
bar(y, width)
bar(y, style)
bar(y, color)
bar(x, y)
bar(x, y, width)
bar(x, y, style)
bar(x, y, color)
bar(y, width, style, color)
bar(x, y, width, style, color)
Generates a plot of vertical bars.
Name | Description | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
x | Specifies the x-coordinates of the bars you want to plot. x is a vector. length(x) must equal length(y). If you do not specify x, the x-axis scale equals length(y) if y is a vector or size(y, 1) if y is a matrix. | ||||||||||||||||
y | Specifies the heights of the bars you want to plot. y is a vector or matrix. | ||||||||||||||||
width | Specifies the width of the bars you want to plot. | ||||||||||||||||
style | Specifies the plot style. style is a string that accepts the following values.
|
||||||||||||||||
color | Specifies a valid color attribute for the plot. color is a string that accepts the following values.
|
The following table lists the support characteristics of this function.
Supported in the LabVIEW Run-Time Engine | No (always ignored) |
Supported on RT targets | No |
y = rand(10, 2);
bar(y);
Helpful
Not Helpful