Defines a data set tailored to bar charts.
Defines a single data set.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_bar), | intent(inout) | :: | this |
The plot_data_bar object. |
||
real(kind=real64), | intent(in), | dimension(:) | :: | x |
The data to plot. |
|
class(errors), | intent(inout), | optional, | target | :: | err |
An error handling object. |
Defines data along with associated axis labels.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_bar), | intent(inout) | :: | this |
The plot_data_bar object. |
||
class(string), | intent(in), | dimension(:) | :: | labels |
The axis labels to associate with the data. |
|
real(kind=real64), | intent(in), | dimension(:) | :: | x |
The data set. |
|
class(errors), | intent(inout), | optional, | target | :: | err |
An error handling object. |
Defines data along with labels and formatting information.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_bar), | intent(inout) | :: | this |
The plot_data_bar object. |
||
real(kind=real64), | intent(in), | dimension(:) | :: | labels |
The axis labels to associate with the data. |
|
real(kind=real64), | intent(in), | dimension(:) | :: | x |
The data set. |
|
character(len=*), | intent(in), | optional | :: | fmt |
The format string for the labels (e.g. '(I0)', etc.). |
|
class(errors), | intent(inout), | optional, | target | :: | err |
An error handling object. |
Gets the requested data point.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_bar), | intent(in) | :: | this |
The plot_data_bar object. |
||
integer(kind=int32), | intent(in) | :: | index |
The data point index. |
||
integer(kind=int32), | intent(in) | :: | col |
The column index. |
The value.
Gets the GNUPLOT command defining which axes to plot against.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_bar), | intent(in) | :: | this |
The plot_data_bar object. |
The command string.
Gets the number of data sets (columns).
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_bar), | intent(in) | :: | this |
The plot_data_bar object. |
The count.
Gets the color index.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_colored), | intent(in) | :: | this |
The plot_data_colored object. |
The index value.
Gets the GNUPLOT command string for this object.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_bar), | intent(in) | :: | this |
The plot_data_bar object. |
The command string.
Gets the number of stored data points.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_bar), | intent(in) | :: | this |
The plot_data_bar object. |
The number of stored data points.
Gets the requested data set.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_bar), | intent(in) | :: | this |
The plot_data_bar object. |
||
integer(kind=int32), | intent(in) | :: | col |
The column index. |
A copy of the data set.
Gets the GNUPLOT command string defining the data for this object.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_bar), | intent(in) | :: | this |
The plot_data_bar object. |
The command string.
Gets a value determining if the data should be plotted against a secondary y-axis.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_bar), | intent(in) | :: | this |
The plot_data_bar object. |
Returns true to plot against a secondary y-axis; else, false.
Gets a value determining if each bar is filled.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_bar), | intent(in) | :: | this |
The plot_data_bar object. |
Returns true if the bars are to be filled; else, false.
Gets the axis label associated with a specific data set.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_bar), | intent(in) | :: | this |
The plot_data_bar object. |
||
integer(kind=int32), | intent(in) | :: | index |
The index of the data set. |
The label.
Gets the object color.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_colored), | intent(in) | :: | this |
The plot_data_colored object. |
The color.
Gets the name to associate with this data set.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data), | intent(in) | :: | this |
The plot_data object. |
The name.
Gets the alpha (transparency) for the bar color.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_bar), | intent(in) | :: | this |
The plot_data_bar object. |
The alpha value ([0, 1]).
Gets a value determining if labels are used to identify the data.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_bar), | intent(in) | :: | this |
The plot_data_bar object. |
Returns true if labels are used; else, false.
Replaces the requested data point.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_bar), | intent(inout) | :: | this |
The plot_data_bar object. |
||
integer(kind=int32), | intent(in) | :: | index |
The data point index. |
||
integer(kind=int32), | intent(in) | :: | col |
The column index. |
||
real(kind=real64), | intent(in) | :: | x |
The new value. |
Sets the color index.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_colored), | intent(inout) | :: | this |
The plot_data_colored object. |
||
integer(kind=int32), | intent(in) | :: | x |
The index value. |
Defines the data set.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_bar), | intent(inout) | :: | this |
The plot_data_bar object. |
||
real(kind=real64), | intent(in), | dimension(:) | :: | x |
The data set. |
|
class(errors), | intent(inout), | optional, | target | :: | err |
An error handling object. |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_bar), | intent(inout) | :: | this |
The plot_data_bar object. |
||
class(string), | intent(in), | dimension(:) | :: | labels |
The axis labels. |
|
real(kind=real64), | intent(in), | dimension(:) | :: | x |
The data set. |
|
class(errors), | intent(inout), | optional, | target | :: | err |
An error handling object. |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_bar), | intent(inout) | :: | this |
The plot_data_bar object. |
||
real(kind=real64), | intent(in), | dimension(:) | :: | labels |
The axis labels. |
|
real(kind=real64), | intent(in), | dimension(:) | :: | x |
The data set. |
|
character(len=*), | intent(in), | optional | :: | fmt |
The format string for the labels (e.g. '(I0)', etc.). |
|
class(errors), | intent(inout), | optional, | target | :: | err |
An error handling object. |
Sets a value determining if the data should be plotted against a secondary y-axis.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_bar), | intent(inout) | :: | this |
The plot_data_bar object. |
||
logical, | intent(in) | :: | x |
Set to true to plot against a secondary y-axis; else, false. |
Sets a value determining if each bar is filled.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_bar), | intent(inout) | :: | this |
The plot_data_bar object. |
||
logical, | intent(in) | :: | x |
Set to true if the bars are to be filled; else, false. |
Sets the axis label for a specific data set.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_bar), | intent(inout) | :: | this |
The plot_data_bar object. |
||
integer(kind=int32) | :: | index |
The index of the data set. |
|||
character(len=*), | intent(in) | :: | txt |
The label. |
Sets the object color.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_colored), | intent(inout) | :: | this |
The plot_data_colored object. |
||
type(color), | intent(in) | :: | x |
The color. |
Sets the name to associate with this data set.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data), | intent(inout) | :: | this |
The plot_data object. |
||
character(len=*), | intent(in) | :: | txt |
The name. |
Gets the alpha (transparency) for the bar color.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_bar), | intent(inout) | :: | this |
The plot_data_bar object. |
||
real(kind=real32), | intent(in) | :: | x |
The alpha value ([0, 1]). |
Sets a value determining if labels are used to identify the data.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_bar), | intent(inout) | :: | this |
The plot_data_bar object. |
||
logical, | intent(in) | :: | x |
Set to true if labels are used; else, false. |