Q3DBars#

The Q3DBars class provides methods for rendering 3D bar graphs. More

Inheritance diagram of PySide6.QtDataVisualization.Q3DBars

Synopsis#

Properties#

  • barSeriesMargin - Margin between series columns in X and Z dimensions. Sensible values are on the range [0,1)

  • barSpacing - Bar spacing in the X and Z dimensions

  • barSpacingRelative - Whether spacing is absolute or relative to bar thickness

  • barThickness - Bar thickness ratio between the X and Z dimensions

  • columnAxis - Axis attached to the active column

  • floorLevel - Floor level for the bar graph in Y-axis data coordinates

  • multiSeriesUniform - Whether bars are to be scaled with proportions set to a single series bar even if there are multiple series displayed

  • primarySeries - Primary series of the graph

  • rowAxis - Axis attached to the active row

  • selectedSeries - Selected series or a null value

  • valueAxis

Functions#

Signals#

Note

This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE

Detailed Description#

Warning

This section contains snippets that were automatically translated from C++ to Python and may contain errors.

This class enables developers to render bar graphs in 3D and to view them by rotating the scene freely. Rotation is done by holding down the right mouse button and moving the mouse. Zooming is done by mouse wheel. Selection, if enabled, is done by left mouse button. The scene can be reset to default camera view by clicking mouse wheel. In touch devices rotation is done by tap-and-move, selection by tap-and-hold and zoom by pinch.

If no axes are set explicitly to Q3DBars , temporary default axes with no labels are created. These default axes can be modified via axis accessors, but as soon any axis is set explicitly for the orientation, the default axis for that orientation is destroyed.

Q3DBars supports more than one series visible at the same time. It is not necessary for all series to have the same amount of rows and columns. Row and column labels are taken from the first added series, unless explicitly defined to row and column axes.

How to construct a minimal Q3DBars graph#

First, construct an instance of Q3DBars . Since we are running the graph as top level window in this example, we need to clear the Qt::FramelessWindowHint flag, which gets set by default:

bars = Q3DBars()
bars.setFlags(bars.flags() ^ Qt.FramelessWindowHint)

After constructing Q3DBars , you can set the data window by changing the range on the row and column axes. It is not mandatory, as data window will default to showing all of the data in the series. If the amount of data is large, it is usually preferable to show just a portion of it. For the example, let’s set the data window to show first five rows and columns:

bars.rowAxis().setRange(0, 4)
bars.columnAxis().setRange(0, 4)

Now Q3DBars is ready to receive data to be rendered. Create a series with one row of 5 values:

series = QBar3DSeries()
data = QBarDataRow()
data << 1.0f << 3.0f << 7.5f << 5.0f << 2.2f
series.dataProxy().addRow(data)
bars.addSeries(series)

Note

We set the data window to 5 x 5, but we are adding only one row of data. This is ok, the rest of the rows will just be blank.

Finally you will need to set it visible:

bars.show()

The complete code needed to create and display this graph is:

from PySide6 import QtDataVisualization
if __name__ == "__main__":

    qputenv("QSG_RHI_BACKEND", "opengl")
    app = QGuiApplication(argc, argv)
    bars = Q3DBars()
    bars.setFlags(bars.flags() ^ Qt.FramelessWindowHint)
    bars.rowAxis().setRange(0, 4)
    bars.columnAxis().setRange(0, 4)
    series = QBar3DSeries()
    data = QBarDataRow()
    data << 1.0f << 3.0f << 7.5f << 5.0f << 2.2f
    series.dataProxy().addRow(data)
    bars.addSeries(series)
    bars.show()
    sys.exit(app.exec())

And this is what those few lines of code produce:

../../_images/q3dbars-minimal.png

The scene can be rotated, zoomed into, and a bar can be selected to view its value, but no other interaction is included in this minimal code example. You can learn more by familiarizing yourself with the examples provided, like the Bar Graph .

class PySide6.QtDataVisualization.Q3DBars([format=None[, parent=None]])#
Parameters:

Constructs a new 3D bar graph with optional parent window and surface format.

Note

Properties can be used directly when from __feature__ import true_property is used or via accessor functions otherwise.

property PᅟySide6.QtDataVisualization.Q3DBars.barSeriesMargin: PySide6.QtCore.QSizeF#

This property holds Margin between series columns in X and Z dimensions. Sensible values are on the range [0,1)..

Preset to (0.0, 0.0) by default. This property enables showing bars from different series side by side, but with space between columns.

See also

barSpacing

Access functions:
property PᅟySide6.QtDataVisualization.Q3DBars.barSpacing: PySide6.QtCore.QSizeF#

This property holds Bar spacing in the X and Z dimensions..

Preset to (1.0, 1.0) by default. Spacing is affected by the barSpacingRelative property.

See also

barSpacingRelative multiSeriesUniform barSeriesMargin

Access functions:
property PᅟySide6.QtDataVisualization.Q3DBars.barSpacingRelative: bool#

This property holds Whether spacing is absolute or relative to bar thickness..

If it is true, the value of 0.0 means that the bars are placed side-to-side, 1.0 means that a space as wide as the thickness of one bar is left between the bars, and so on. Preset to true.

Access functions:
property PᅟySide6.QtDataVisualization.Q3DBars.barThickness: float#

This property holds The bar thickness ratio between the X and Z dimensions..

The value 1.0 means that the bars are as wide as they are deep, whereas 0.5 makes them twice as deep as they are wide. Preset to 1.0 by default.

Access functions:
property PᅟySide6.QtDataVisualization.Q3DBars.columnAxis: PySide6.QtDataVisualization.QCategory3DAxis#

This property holds The axis attached to the active column..

Access functions:
property PᅟySide6.QtDataVisualization.Q3DBars.floorLevel: float#

This property holds The floor level for the bar graph in Y-axis data coordinates..

The actual floor level will be restricted by the Y-axis minimum and maximum values. Defaults to zero.

Access functions:
property PᅟySide6.QtDataVisualization.Q3DBars.multiSeriesUniform: bool#

This property holds Whether bars are to be scaled with proportions set to a single series bar even if there are multiple series displayed..

If set to true, bar spacing will be correctly applied only to the X-axis. Preset to false by default.

Access functions:
property PᅟySide6.QtDataVisualization.Q3DBars.primarySeries: PySide6.QtDataVisualization.QBar3DSeries#

This property holds The primary series of the graph..

Access functions:
property PᅟySide6.QtDataVisualization.Q3DBars.rowAxis: PySide6.QtDataVisualization.QCategory3DAxis#

This property holds The axis attached to the active row..

Access functions:
property PᅟySide6.QtDataVisualization.Q3DBars.selectedSeries: PySide6.QtDataVisualization.QBar3DSeries#

This property holds The selected series or a null value..

If selectionMode has the SelectionMultiSeries flag set, this property holds the series that owns the selected bar.

Access functions:
property PᅟySide6.QtDataVisualization.Q3DBars.valueAxis: PySide6.QtDataVisualization.QValue3DAxis#

Sets the active value axis (the Y-axis) to axis. Implicitly calls addAxis() to transfer the ownership of axis to this graph.

If axis is null, a temporary default axis with no labels and an automatically adjusting range is created. This temporary axis is destroyed if another axis is set explicitly to the same orientation.

Access functions:
PySide6.QtDataVisualization.Q3DBars.addAxis(axis)#
Parameters:

axisPySide6.QtDataVisualization.QAbstract3DAxis

Adds axis to the graph. The axes added via addAxis are not yet taken to use, addAxis is simply used to give the ownership of the axis to the graph. The axis must not be null or added to another graph.

PySide6.QtDataVisualization.Q3DBars.addSeries(series)#
Parameters:

seriesPySide6.QtDataVisualization.QBar3DSeries

Adds the series to the graph. A graph can contain multiple series, but only one set of axes, so the rows and columns of all series must match for the visualized data to be meaningful. If the graph has multiple visible series, only the primary series will generate the row or column labels on the axes in cases where the labels are not explicitly set to the axes. If the newly added series has specified a selected bar, it will be highlighted and any existing selection will be cleared. Only one added series can have an active selection.

PySide6.QtDataVisualization.Q3DBars.axes()#

Returns the list of all added axes.

See also

addAxis()

PySide6.QtDataVisualization.Q3DBars.barSeriesMargin()#
Return type:

PySide6.QtCore.QSizeF

Getter of property barSeriesMargin .

PySide6.QtDataVisualization.Q3DBars.barSeriesMarginChanged(margin)#
Parameters:

marginPySide6.QtCore.QSizeF

Notification signal of property barSeriesMargin .

PySide6.QtDataVisualization.Q3DBars.barSpacing()#
Return type:

PySide6.QtCore.QSizeF

See also

setBarSpacing()

Getter of property barSpacing .

PySide6.QtDataVisualization.Q3DBars.barSpacingChanged(spacing)#
Parameters:

spacingPySide6.QtCore.QSizeF

Notification signal of property barSpacing .

PySide6.QtDataVisualization.Q3DBars.barSpacingRelativeChanged(relative)#
Parameters:

relative – bool

Notification signal of property barSpacingRelative .

PySide6.QtDataVisualization.Q3DBars.barThickness()#
Return type:

float

Getter of property barThickness .

PySide6.QtDataVisualization.Q3DBars.barThicknessChanged(thicknessRatio)#
Parameters:

thicknessRatio – float

Notification signal of property barThickness .

PySide6.QtDataVisualization.Q3DBars.columnAxis()#
Return type:

PySide6.QtDataVisualization.QCategory3DAxis

See also

setColumnAxis()

Getter of property columnAxis .

PySide6.QtDataVisualization.Q3DBars.columnAxisChanged(axis)#
Parameters:

axisPySide6.QtDataVisualization.QCategory3DAxis

Notification signal of property columnAxis .

PySide6.QtDataVisualization.Q3DBars.floorLevel()#
Return type:

float

See also

setFloorLevel()

Getter of property floorLevel .

PySide6.QtDataVisualization.Q3DBars.floorLevelChanged(level)#
Parameters:

level – float

Notification signal of property floorLevel .

PySide6.QtDataVisualization.Q3DBars.insertSeries(index, series)#
Parameters:

Inserts the series into the position index in the series list. If the series has already been added to the list, it is moved to the new index.

Note

When moving a series to a new index that is after its old index, the new position in list is calculated as if the series was still in its old index, so the final index is actually the index decremented by one.

PySide6.QtDataVisualization.Q3DBars.isBarSpacingRelative()#
Return type:

bool

Getter of property barSpacingRelative .

PySide6.QtDataVisualization.Q3DBars.isMultiSeriesUniform()#
Return type:

bool

Getter of property multiSeriesUniform .

PySide6.QtDataVisualization.Q3DBars.multiSeriesUniformChanged(uniform)#
Parameters:

uniform – bool

Notification signal of property multiSeriesUniform .

PySide6.QtDataVisualization.Q3DBars.primarySeries()#
Return type:

PySide6.QtDataVisualization.QBar3DSeries

Getter of property primarySeries .

PySide6.QtDataVisualization.Q3DBars.primarySeriesChanged(series)#
Parameters:

seriesPySide6.QtDataVisualization.QBar3DSeries

Notification signal of property primarySeries .

PySide6.QtDataVisualization.Q3DBars.releaseAxis(axis)#
Parameters:

axisPySide6.QtDataVisualization.QAbstract3DAxis

Releases the ownership of the axis back to the caller, if it is added to this graph. If the released axis is in use, a new default axis will be created and set active.

If the default axis is released and added back later, it behaves as any other axis would.

PySide6.QtDataVisualization.Q3DBars.removeSeries(series)#
Parameters:

seriesPySide6.QtDataVisualization.QBar3DSeries

Removes the series from the graph.

See also

hasSeries()

PySide6.QtDataVisualization.Q3DBars.rowAxis()#
Return type:

PySide6.QtDataVisualization.QCategory3DAxis

See also

setRowAxis()

Getter of property rowAxis .

PySide6.QtDataVisualization.Q3DBars.rowAxisChanged(axis)#
Parameters:

axisPySide6.QtDataVisualization.QCategory3DAxis

Notification signal of property rowAxis .

PySide6.QtDataVisualization.Q3DBars.selectedSeries()#
Return type:

PySide6.QtDataVisualization.QBar3DSeries

Getter of property selectedSeries .

PySide6.QtDataVisualization.Q3DBars.selectedSeriesChanged(series)#
Parameters:

seriesPySide6.QtDataVisualization.QBar3DSeries

Notification signal of property selectedSeries .

PySide6.QtDataVisualization.Q3DBars.seriesList()#

Returns the list of series added to this graph.

See also

hasSeries()

PySide6.QtDataVisualization.Q3DBars.setBarSeriesMargin(margin)#
Parameters:

marginPySide6.QtCore.QSizeF

Setter of property barSeriesMargin .

PySide6.QtDataVisualization.Q3DBars.setBarSpacing(spacing)#
Parameters:

spacingPySide6.QtCore.QSizeF

See also

barSpacing()

Setter of property barSpacing .

PySide6.QtDataVisualization.Q3DBars.setBarSpacingRelative(relative)#
Parameters:

relative – bool

Setter of property barSpacingRelative .

PySide6.QtDataVisualization.Q3DBars.setBarThickness(thicknessRatio)#
Parameters:

thicknessRatio – float

See also

barThickness()

Setter of property barThickness .

PySide6.QtDataVisualization.Q3DBars.setColumnAxis(axis)#
Parameters:

axisPySide6.QtDataVisualization.QCategory3DAxis

Sets the axis of the active column to axis. Implicitly calls addAxis() to transfer the ownership of the axis to this graph.

If axis is null, a temporary default axis with no labels is created. This temporary axis is destroyed if another axis is set explicitly to the same orientation.

Setter of property columnAxis .

PySide6.QtDataVisualization.Q3DBars.setFloorLevel(level)#
Parameters:

level – float

See also

floorLevel()

Setter of property floorLevel .

PySide6.QtDataVisualization.Q3DBars.setMultiSeriesUniform(uniform)#
Parameters:

uniform – bool

Setter of property multiSeriesUniform .

PySide6.QtDataVisualization.Q3DBars.setPrimarySeries(series)#
Parameters:

seriesPySide6.QtDataVisualization.QBar3DSeries

Sets series as the primary series of the graph. The primary series determines the row and column axis labels when the labels are not explicitly set to the axes.

If the specified series is not yet added to the graph, setting it as the primary series will also implicitly add it to the graph.

If the primary series itself is removed from the graph, this property resets to default.

If series is null, this property resets to default. Defaults to the first added series or zero if no series are added to the graph.

See also

primarySeries()

Setter of property primarySeries .

PySide6.QtDataVisualization.Q3DBars.setRowAxis(axis)#
Parameters:

axisPySide6.QtDataVisualization.QCategory3DAxis

Sets the axis of the active row to axis. Implicitly calls addAxis() to transfer the ownership of the axis to this graph.

If axis is null, a temporary default axis with no labels is created. This temporary axis is destroyed if another axis is set explicitly to the same orientation.

Setter of property rowAxis .

PySide6.QtDataVisualization.Q3DBars.setValueAxis(axis)#
Parameters:

axisPySide6.QtDataVisualization.QValue3DAxis

See also

valueAxis()

Setter of property valueAxis .

PySide6.QtDataVisualization.Q3DBars.valueAxis()#
Return type:

PySide6.QtDataVisualization.QValue3DAxis

See also

setValueAxis()

Getter of property valueAxis .

PySide6.QtDataVisualization.Q3DBars.valueAxisChanged(axis)#
Parameters:

axisPySide6.QtDataVisualization.QValue3DAxis

Notification signal of property valueAxis .