Bar chart plotting functionality
Provides: - Vertical bar charts (bar) - Horizontal bar charts (barh) - Automatic bar width calculation - Color management for bar plots
Add vertical bar plot
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(figure_t), | intent(inout) | :: | self | |||
| real(kind=wp), | intent(in) | :: | x(:) | |||
| real(kind=wp), | intent(in) | :: | heights(:) | |||
| real(kind=wp), | intent(in), | optional | :: | width | ||
| character(len=*), | intent(in), | optional | :: | label | ||
| real(kind=wp), | intent(in), | optional | :: | color(3) | 
Add horizontal bar plot
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(figure_t), | intent(inout) | :: | self | |||
| real(kind=wp), | intent(in) | :: | y(:) | |||
| real(kind=wp), | intent(in) | :: | widths(:) | |||
| real(kind=wp), | intent(in), | optional | :: | height | ||
| character(len=*), | intent(in), | optional | :: | label | ||
| real(kind=wp), | intent(in), | optional | :: | color(3) |