Plot a vertical bar chart with per-bar RGB color arrays.
Parameters x : real(wp), contiguous, intent(in) Bar positions. height : real(wp), contiguous, intent(in) Bar heights. color_per_bar : real(wp)(3, ), optional Per-bar fill colors. edgecolor_per_bar : real(wp)(3, ), optional Per-bar edge colors. width : real(wp), optional Bar width. bottom : real(wp), optional Baseline values. label : character(len=), optional Legend label. align : character(len=), optional Accepted for matplotlib parity. alpha : real(wp), optional Bar transparency.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| real(kind=wp), | intent(in), | contiguous | :: | x(:) | ||
| real(kind=wp), | intent(in), | contiguous | :: | height(:) | ||
| real(kind=wp), | intent(in), | optional | :: | color_per_bar(3,*) | ||
| real(kind=wp), | intent(in), | optional | :: | edgecolor_per_bar(3,*) | ||
| real(kind=wp), | intent(in), | optional | :: | width | ||
| real(kind=wp), | intent(in), | optional | :: | bottom(:) | ||
| character(len=*), | intent(in), | optional | :: | label | ||
| character(len=*), | intent(in), | optional | :: | align | ||
| real(kind=wp), | intent(in), | optional | :: | alpha |