BarSeries QML Type

Presents data in bar graphs. More...

Import Statement: import QtGraphs
Instantiates: QBarSeries
Inherits:

AbstractSeries

Properties

Signals

Methods

  • BarSet append(string label, VariantList values)
  • BarSet at(int index)
  • Barset at(int index)
  • clear()
  • int find(BarSet barset)
  • BarSet insert(int index, string label, VariantList values)
  • bool remove(BarSet barset)
  • bool remove(int index)
  • void removeMultiple(int index, int count)
  • bool replace(list<BarSet> sets)
  • bool replace(BarSet oldSet, BarSet newSet)
  • bool replace(int index, BarSet barset)

Detailed Description

Draws data by default as a series of bars grouped by category, with one bar per category from each bar set added to the series. It also supports horizontal bars and grouping bars as stacked.

Property Documentation

barComponent : Component

A custom QML component used for visualizing each of the bars. Instance of this component is created for each of the bar. When this is not defined, a default rectangle visualization for bars is used.

The dynamic properties available for this component are:

TypeNameDescription
colorbarColorThe fill color of the bar. This value comes either from the GraphsTheme or from BarSet::color if the BarSet overrides the color.
colorbarBorderColorThe border color of the bar. This value comes either from the GraphsTheme or from BarSet::borderColor if the BarSet overrides the color.
realbarBorderWidthThe width of the bar border. This value comes either from the GraphsTheme or from BarSet::borderWidth if the BarSet overrides the width.
realbarValueThe value of the bar. This value comes from the BarSet::values.
stringbarLabelThe label of the bar. This value comes from the BarSet::label.
boolbarSelectedThis value is true when the bar is selected, meaning that the bar index is in BarSet::selectedBars.

To use any of these, add property with the defined name into your custom component. For example "property color barColor" and "property real barValue".


barSets : list<BarSet> [read-only]

A list of sets added to the series.


barWidth : real

The unit of width is the unit of the x-axis. The minimum width for bars is zero, and negative values are treated as zero. Setting the width to zero means that the width of the bar on the screen is one pixel regardless of the scale of the x-axis. Bars wider than zero are scaled using the x-axis scale.

By default, the barWidth is 0.5 (bars will take 50% of the available width). The valid values range from 0.0 (0%) to 1.0 (100%).

Note: When used with the BarSeries type, this value specifies the width of a group of bars instead of that of a single bar.


barsType : enumeration

The type of the bar series:

ConstantDescription
BarSeries.BarsType.GroupsBar sets are grouped by category. This is the default value.
BarSeries.BarsType.StackedBar sets are stacked after each other by category.
BarSeries.BarsType.StackedPercentBar sets are stacked after each other by category. The segment size corresponds to the percentage of the segment value compared with the total value of all segments in the stack.

count : int [read-only]

The number of bar sets in a bar series.


labelsAngle : real

The angle of the value labels in degrees.


labelsFormat : string

The format used for showing labels in a bar series.

See also QBarSeries::labelsFormat, labelsVisible, and labelsPosition.


labelsMargin : real

The margin of the value labels in pixels.

This margin from side is used when labelsPosition is set to something else than LabelsPosition.Center. The default value is 0.


labelsPosition : enumeration

The position of the data value labels:

ConstantDescription
BarSeries.LabelsPosition.CenterLabel is located in the center of the bar.
BarSeries.LabelsPosition.InsideEndLabel is located inside the bar at the top.
BarSeries.LabelsPosition.InsideBaseLabel is located inside the bar at the bottom.
BarSeries.LabelsPosition.OutsideEndLabel is located outside the bar at the top.

See also labelsVisible and labelsFormat.


labelsPrecision : real

The maximum amount of significant digits shown in value labels.

Default value is 6.


labelsVisible : bool

The visibility of the labels in a bar series. The default label visibility is false.


Signal Documentation

barSetsChanged()

This signal is emitted when barsets changes.

Note: The corresponding handler is onBarSetsChanged.


barsetsAdded()

This signal is emitted when bar sets are added to the series.

The corresponding signal handler is onBarsetsAdded.

Note: The corresponding handler is onBarsetsAdded.


barsetsRemoved()

This signal is emitted when bar sets are removed from the series.

The corresponding signal handler is onBarsetsRemoved.

Note: The corresponding handler is onBarsetsRemoved.


clicked(int index, BarSet barset)

This signal is emitted when the user clicks the bar specified by index in the bar set specified by barset.

The corresponding signal handler is onClicked.

Note: The corresponding handler is onClicked.


doubleClicked(int index, BarSet barset)

This signal is emitted when the user double-clicks the bar specified by index in the bar set specified by barset.

The corresponding signal handler is onDoubleClicked.

Note: The corresponding handler is onDoubleClicked.


hovered(bool status, int index, BarSet barset)

This signal is emitted when a mouse is hovered over the bar specified by index in the bar set specified by barset. When the mouse moves over the bar, status turns true, and when the mouse moves away again, it turns false.

The corresponding signal handler is onHovered.

Note: The corresponding handler is onHovered.


pressed(int index, BarSet barset)

This signal is emitted when the user clicks the bar specified by index in the bar set specified by barset and holds down the mouse button.

The corresponding signal handler is onPressed.

Note: The corresponding handler is onPressed.


released(int index, BarSet barset)

This signal is emitted when the user releases the mouse press on the bar specified by index in the bar set specified by barset.

The corresponding signal handler is onReleased.

Note: The corresponding handler is onReleased.


Method Documentation

BarSet append(string label, VariantList values)

Adds a new bar set with label and values to the index. values is a list of real values.

For example:

myBarSeries.append("set 1", [0, 0.2, 0.2, 0.5, 0.4, 1.5, 0.9]);

BarSet at(int index)

Returns the bar set at index. Returns null if the index is not valid.


Barset at(int index)

Returns the bar set specified by index from the series. Returns null otherwise.


clear()

Removes all bar sets from the series.


int find(BarSet barset)

Returns the index of the bar set specified by barset from the series. Returns -1 if not found.


BarSet insert(int index, string label, VariantList values)

Adds a new bar set with label and values to index. values can be a list of real values or a list of XYPoint types.

If the index value is equal to or less than zero, the new bar set is prepended to the bar series. If the index value is equal to or greater than the number of bar sets in the bar series, the new bar set is appended to the bar series.

See also append().


bool remove(BarSet barset)

Removes the bar set specified by barset from the series. Returns true if successful, false otherwise.


bool remove(int index)

Removes the bar set specified by index from the series. Returns true if the removal was successful, false otherwise.


void removeMultiple(int index, int count)

Removes a range of bar sets as specified by the index and count. The call traverses over all sets even if removal of one fails.


bool replace(list<BarSet> sets)

Completely replaces all current bar set with sets. The size does not need to match. Returns false if any of the bar set in sets are invalid.


bool replace(BarSet oldSet, BarSet newSet)

Replaces the bar set specified by oldSet with newSet. Returns true if the removal was successful, false otherwise. oldSet is destroyed if this is successful.


bool replace(int index, BarSet barset)

Replaces the bar set at the position specified by index from the series and replaces it with barset. Returns true if successful, false otherwise.


© 2024 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.