Member of the plots class.
bar3h(z)
bar3h(z, width)
bar3h(z, style)
bar3h(z, color)
bar3h(y, z)
bar3h(y, z, width)
bar3h(y, z, style)
bar3h(y, z, color)
bar3h(z, width, style, color)
bar3h(y, z, width, style, color)
Generates a plot of 3D horizontal bars.
| Name | Description | ||||||||||||||||
| y | Specifies the y-coordinates of the bars you want to plot. y is a vector. length(y) must equal length(z). | ||||||||||||||||
| z | Specifies the heights of the bars you want to plot. z can be a vector or matrix. If z is a matrix, bar3h plots each column of z as bars of the same color. | ||||||||||||||||
| 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.
|
This function is not supported in the LabVIEW Run-Time Engine. This function can remain in your scripts when you build a stand-alone application or shared library, but the LabVIEW Run-Time Engine does not execute this function.
z = rand(5, 2);
bar3h(z);