Bars Example¶
Using Q3DBars
in a widget application.
The bars example shows how to make a 3D bar graph using Q3DBars
and combining the use of widgets for adjusting several adjustable qualities. The example shows how to:
Create an application with
Q3DBars
and some widgetsUse
QBar3DSeries
andQBarDataProxy
to set data to the graphAdjust some graph and series properties using widget controls
Select a row or a column by clicking an axis label
It also demonstrates how having negative bar values affects the graph.
For instructions about how to interact with the graph, see this page .
Running the Example¶
To run the example from Qt Creator , open the Welcome mode and select the example from Examples. For more information, visit Building and Running an Example.
Creating the Application¶
First, in main.cpp, we create a QApplication
, instantiate Q3DBars
and a window container for it:
app = QApplication([]) widgetgraph = Q3DBars() container = QWidget.createWindowContainer(widgetgraph)
The call to createWindowContainer
is required, as all data visualization graph classes ( Q3DBars
, Q3DScatter
, Q3DSurface
) inherit QWindow
. Any class inheriting QWindow
cannot be used as a widget any other way.
Then we’ll create horizontal and vertical layouts. We’ll add the graph and the vertical layout into the horizontal one:
widget = QWidget() hLayout = QHBoxLayout(widget) vLayout = QVBoxLayout() hLayout.addWidget(container, 1) hLayout.addLayout(vLayout)
We’re not using the vertical layout for anything yet, but we’ll get back to it in Using widgets to control the graph
Next, let’s create another class to handle the data addition and other interaction with the graph. Let’s call it GraphModifier
(See Setting up the graph and Adding data to the graph for details):
modifier = GraphModifier(widgetgraph)
The application main is done and we can show the graph and start the event loop:
widget.show() sys.exit(app.exec())
Setting up the Graph¶
Let’s set up the graph in the constructor of the GraphModifier
class we instantiated in the application main:
def __init__(self, bargraph): self.m_graph = bargraph m_xRotation(0.0f), m_yRotation(0.0f), m_fontSize(30), m_segments(4), m_subSegments(3), m_minval(-20.0f), m_maxval(20.0f), m_temperatureAxis(QValue3DAxis), m_yearAxis(QCategory3DAxis), m_monthAxis(QCategory3DAxis), m_primarySeries(QBar3DSeries), m_secondarySeries(QBar3DSeries), m_barMesh(QAbstract3DSeries.MeshBevelBar), m_smooth(False) m_graph.setShadowQuality(QAbstract3DGraph.ShadowQualitySoftMedium) m_graph.activeTheme().setBackgroundEnabled(False) m_graph.activeTheme().setFont(QFont("Times New Roman", m_fontSize)) m_graph.activeTheme().setLabelBackgroundEnabled(True) m_graph.setMultiSeriesUniform(True) m_months << "January" << "February" << "March" << "April" << "May" << "June" << "July" << "August" << "September" << "October" << "November" << "December" m_years << "2006" << "2007" << "2008" << "2009" << "2010" << "2011" << "2012" << "2013" m_temperatureAxis.setTitle("Average temperature") m_temperatureAxis.setSegmentCount(m_segments) m_temperatureAxis.setSubSegmentCount(m_subSegments) m_temperatureAxis.setRange(m_minval, m_maxval) m_temperatureAxis.setLabelFormat(QString(QStringLiteral("%.1f ") + celsiusString)) m_temperatureAxis.setLabelAutoRotation(30.0f) m_temperatureAxis.setTitleVisible(True) m_yearAxis.setTitle("Year") m_yearAxis.setLabelAutoRotation(30.0f) m_yearAxis.setTitleVisible(True) m_monthAxis.setTitle("Month") m_monthAxis.setLabelAutoRotation(30.0f) m_monthAxis.setTitleVisible(True) m_graph.setValueAxis(m_temperatureAxis) m_graph.setRowAxis(m_yearAxis) m_graph.setColumnAxis(m_monthAxis) m_primarySeries.setItemLabelFormat(QStringLiteral("Oulu - @colLabel @rowLabel: @valueLabel")) m_primarySeries.setMesh(QAbstract3DSeries.MeshBevelBar) m_primarySeries.setMeshSmooth(False) m_secondarySeries.setItemLabelFormat(QStringLiteral("Helsinki - @colLabel @rowLabel: @valueLabel")) m_secondarySeries.setMesh(QAbstract3DSeries.MeshBevelBar) m_secondarySeries.setMeshSmooth(False) m_secondarySeries.setVisible(False) m_graph.addSeries(m_primarySeries) m_graph.addSeries(m_secondarySeries) changePresetCamera() resetTemperatureData() # Set up property animations for zooming to the selected bar camera = m_graph.scene().activeCamera() m_defaultAngleX = camera.xRotation() m_defaultAngleY = camera.yRotation() m_defaultZoom = camera.zoomLevel() m_defaultTarget = camera.target() m_animationCameraX.setTargetObject(camera) m_animationCameraY.setTargetObject(camera) m_animationCameraZoom.setTargetObject(camera) m_animationCameraTarget.setTargetObject(camera) m_animationCameraX.setPropertyName("xRotation") m_animationCameraY.setPropertyName("yRotation") m_animationCameraZoom.setPropertyName("zoomLevel") m_animationCameraTarget.setPropertyName("target") duration = 1700 m_animationCameraX.setDuration(duration) m_animationCameraY.setDuration(duration) m_animationCameraZoom.setDuration(duration) m_animationCameraTarget.setDuration(duration) # The zoom always first zooms out above the graph and then zooms in zoomOutFraction = 0.3 m_animationCameraX.setKeyValueAt(zoomOutFraction, QVariant.fromValue(0.0f)) m_animationCameraY.setKeyValueAt(zoomOutFraction, QVariant.fromValue(90.0f)) m_animationCameraZoom.setKeyValueAt(zoomOutFraction, QVariant.fromValue(50.0f)) m_animationCameraTarget.setKeyValueAt(zoomOutFraction, QVariant.fromValue(QVector3D(0.0f, 0.0f, 0.0f)))
Let’s take a closer look at parts of the code.
First we’re creating the axes and the series into member variables to support changing them easily later on, if we want to:
m_temperatureAxis(QValue3DAxis), m_yearAxis(QCategory3DAxis), m_monthAxis(QCategory3DAxis), m_primarySeries(QBar3DSeries), m_secondarySeries(QBar3DSeries),
Then we’re setting some of the visual qualities for the graph:
m_graph.setShadowQuality(QAbstract3DGraph.ShadowQualitySoftMedium) m_graph.activeTheme().setBackgroundEnabled(False) m_graph.activeTheme().setFont(QFont("Times New Roman", m_fontSize)) m_graph.activeTheme().setLabelBackgroundEnabled(True) m_graph.setMultiSeriesUniform(True)
We’re also setting up the axes and setting them to the graph as active axes:
m_temperatureAxis.setTitle("Average temperature") m_temperatureAxis.setSegmentCount(m_segments) m_temperatureAxis.setSubSegmentCount(m_subSegments) m_temperatureAxis.setRange(m_minval, m_maxval) m_temperatureAxis.setLabelFormat(QString(QStringLiteral("%.1f ") + celsiusString)) m_temperatureAxis.setLabelAutoRotation(30.0f) m_temperatureAxis.setTitleVisible(True) m_yearAxis.setTitle("Year") m_yearAxis.setLabelAutoRotation(30.0f) m_yearAxis.setTitleVisible(True) m_monthAxis.setTitle("Month") m_monthAxis.setLabelAutoRotation(30.0f) m_monthAxis.setTitleVisible(True) m_graph.setValueAxis(m_temperatureAxis) m_graph.setRowAxis(m_yearAxis) m_graph.setColumnAxis(m_monthAxis)
We give axis labels a small autorotation angle to make them orient somewhat toward the camera. This is done to improve axis label readability at extreme camera angles.
Next we initialize the visual properties of the series. Note that the second series is initially not visible:
m_primarySeries.setItemLabelFormat(QStringLiteral("Oulu - @colLabel @rowLabel: @valueLabel")) m_primarySeries.setMesh(QAbstract3DSeries.MeshBevelBar) m_primarySeries.setMeshSmooth(False) m_secondarySeries.setItemLabelFormat(QStringLiteral("Helsinki - @colLabel @rowLabel: @valueLabel")) m_secondarySeries.setMesh(QAbstract3DSeries.MeshBevelBar) m_secondarySeries.setMeshSmooth(False) m_secondarySeries.setVisible(False)
The series need to be added to the graph to show them:
m_graph.addSeries(m_primarySeries) m_graph.addSeries(m_secondarySeries)
Finally, we set the camera angle by calling the same method the camera angle change button in the UI uses to cycle through various camera angles:
changePresetCamera()
There you can see that the camera is controlled via the scene object of the graph:
preset = Q3DCamera.CameraPresetFront() m_graph.scene().activeCamera().setCameraPreset((Q3DCamera.CameraPreset)preset) if (++preset > Q3DCamera.CameraPresetDirectlyBelow) preset = Q3DCamera.CameraPresetFrontLow
For more information about using scene and cameras, see Q3DScene
and Q3DCamera
.
That concludes setting up the graph.
Adding Data to the Graph¶
At the end of the constructor there’s a call:
resetTemperatureData()
This method is used to add data to the proxies of the two series:
# Set up data float tempOulu[8][12] = { {-6.7f, -11.7f, -9.7f, 3.3f, 9.2f, 14.0f, 16.3f, 17.8f, 10.2f, 2.1f, -2.6f, -0.3f}, // 2006 {-6.8f, -13.3f, 0.2f, 1.5f, 7.9f, 13.4f, 16.1f, 15.5f, 8.2f, 5.4f, -2.6f, -0.8f}, // 2007 {-4.2f, -4.0f, -4.6f, 1.9f, 7.3f, 12.5f, 15.0f, 12.8f, 7.6f, 5.1f, -0.9f, -1.3f}, // 2008 {-7.8f, -8.8f, -4.2f, 0.7f, 9.3f, 13.2f, 15.8f, 15.5f, 11.2f, 0.6f, 0.7f, -8.4f}, // 2009 {-14.4f, -12.1f, -7.0f, 2.3f, 11.0f, 12.6f, 18.8f, 13.8f, 9.4f, 3.9f, -5.6f, -13.0f}, // 2010 {-9.0f, -15.2f, -3.8f, 2.6f, 8.3f, 15.9f, 18.6f, 14.9f, 11.1f, 5.3f, 1.8f, -0.2f}, // 2011 {-8.7f, -11.3f, -2.3f, 0.4f, 7.5f, 12.2f, 16.4f, 14.1f, 9.2f, 3.1f, 0.3f, -12.1f}, // 2012 {-7.9f, -5.3f, -9.1f, 0.8f, 11.6f, 16.6f, 15.9f, 15.5f, 11.2f, 4.0f, 0.1f, -1.9f} // 2013 float tempHelsinki[8][12] = { {-3.7f, -7.8f, -5.4f, 3.4f, 10.7f, 15.4f, 18.6f, 18.7f, 14.3f, 8.5f, 2.9f, 4.1f}, // 2006 {-1.2f, -7.5f, 3.1f, 5.5f, 10.3f, 15.9f, 17.4f, 17.9f, 11.2f, 7.3f, 1.1f, 0.5f}, // 2007 {-0.6f, 1.2f, 0.2f, 6.3f, 10.2f, 13.8f, 18.1f, 15.1f, 10.1f, 9.4f, 2.5f, 0.4f}, // 2008 {-2.9f, -3.5f, -0.9f, 4.7f, 10.9f, 14.0f, 17.4f, 16.8f, 13.2f, 4.1f, 2.6f, -2.3f}, // 2009 {-10.2f, -8.0f, -1.9f, 6.6f, 11.3f, 14.5f, 21.0f, 18.8f, 12.6f, 6.1f, -0.5f, -7.3f}, // 2010 {-4.4f, -9.1f, -2.0f, 5.5f, 9.9f, 15.6f, 20.8f, 17.8f, 13.4f, 8.9f, 3.6f, 1.5f}, // 2011 {-3.5f, -3.2f, -0.7f, 4.0f, 11.1f, 13.4f, 17.3f, 15.8f, 13.1f, 6.4f, 4.1f, -5.1f}, // 2012 {-4.8f, -1.8f, -5.0f, 2.9f, 12.8f, 17.2f, 18.0f, 17.1f, 12.5f, 7.5f, 4.5f, 2.3f} // 2013 # Create data arrays dataSet = QBarDataArray() dataSet2 = QBarDataArray() dataRow = QBarDataRow() dataRow2 = QBarDataRow() dataSet.reserve(m_years.size()) for year in range(0, m_years.size()): # Create a data row dataRow = QBarDataRow(m_months.size()) dataRow2 = QBarDataRow(m_months.size()) for month in range(0, m_months.size()): # Add data to the row (dataRow)[month].setValue(tempOulu[year][month]) (dataRow2)[month].setValue(tempHelsinki[year][month]) # Add the row to the set dataSet.append(dataRow) dataSet2.append(dataRow2) # Add data to the data proxy (the data proxy assumes ownership of it) m_primarySeries.dataProxy().resetArray(dataSet, m_years, m_months) m_secondarySeries.dataProxy().resetArray(dataSet2, m_years, m_months)
Now the series have data to show.
Using Widgets to Control the Graph¶
There isn’t much interaction yet, so let’s continue by adding some widgets back in the application main. Let’s just focus on two as an example:
rotationSliderX = QSlider(Qt.Horizontal, widget) rotationSliderX.setTickInterval(30) rotationSliderX.setTickPosition(QSlider.TicksBelow) rotationSliderX.setMinimum(-180) rotationSliderX.setValue(0) rotationSliderX.setMaximum(180) rotationSliderY = QSlider(Qt.Horizontal, widget) rotationSliderY.setTickInterval(15) rotationSliderY.setTickPosition(QSlider.TicksAbove) rotationSliderY.setMinimum(-90) rotationSliderY.setValue(0) rotationSliderY.setMaximum(90)
We can use these slider widgets to rotate the graph instead of just using the mouse or touch.
Let’s add them to the vertical layout we created earlier:
vLayout.addWidget(QLabel(QStringLiteral("Rotate horizontally"))) vLayout.addWidget(rotationSliderX, 0, Qt.AlignTop) vLayout.addWidget(QLabel(QStringLiteral("Rotate vertically"))) vLayout.addWidget(rotationSliderY, 0, Qt.AlignTop)
Then we’ll connect them to methods in GraphModifier
:
QObject.connect(rotationSliderX, QSlider.valueChanged, modifier, GraphModifier.rotateX) QObject.connect(rotationSliderY, QSlider.valueChanged, modifier, GraphModifier.rotateY)
Here are the methods in GraphModifier
the signals were connected to. The camera is controlled via the scene object. This time we specify the actual camera position along the orbit around the center point, instead of specifying a preset camera angle:
def rotateX(self, rotation): m_xRotation = rotation m_graph.scene().activeCamera().setCameraPosition(m_xRotation, m_yRotation) def rotateY(self, rotation): m_yRotation = rotation m_graph.scene().activeCamera().setCameraPosition(m_xRotation, m_yRotation)
Now these two sliders can be used to rotate the graph.
And so we have an application in which we can control:
Graph rotation
Label style
Camera preset
Background visibility
Grid visibility
Bar shading smoothness
Visibility of the second bar series
Value axis direction
Axis title visibility and rotation
Data range to be shown
Bar style
Selection mode
Theme
Shadow quality
Font
Font size
Axis label rotation
Selecting a Row/column by Clicking an Axis Label¶
Selection by axis label is default functionality for bar graphs. As an example, you can select rows by clicking an axis label in the following way:
Change selection mode to
SelectionRow
Click a year label
The row with the clicked year is selected
You can use the same method with SelectionSlice
and SelectionItem
flags, as long as you have either SelectionRow
or SelectionColumn
set as well.
Zooming to Selection¶
As an example of adjusting camera target we have implemented an animation of zooming to selection via a button press. Animation initializations are done in the constructor:
camera = m_graph.scene().activeCamera() m_defaultAngleX = camera.xRotation() m_defaultAngleY = camera.yRotation() m_defaultZoom = camera.zoomLevel() m_defaultTarget = camera.target() m_animationCameraX.setTargetObject(camera) m_animationCameraY.setTargetObject(camera) m_animationCameraZoom.setTargetObject(camera) m_animationCameraTarget.setTargetObject(camera) m_animationCameraX.setPropertyName("xRotation") m_animationCameraY.setPropertyName("yRotation") m_animationCameraZoom.setPropertyName("zoomLevel") m_animationCameraTarget.setPropertyName("target") duration = 1700 m_animationCameraX.setDuration(duration) m_animationCameraY.setDuration(duration) m_animationCameraZoom.setDuration(duration) m_animationCameraTarget.setDuration(duration) # The zoom always first zooms out above the graph and then zooms in zoomOutFraction = 0.3 m_animationCameraX.setKeyValueAt(zoomOutFraction, QVariant.fromValue(0.0f)) m_animationCameraY.setKeyValueAt(zoomOutFraction, QVariant.fromValue(90.0f)) m_animationCameraZoom.setKeyValueAt(zoomOutFraction, QVariant.fromValue(50.0f)) m_animationCameraTarget.setKeyValueAt(zoomOutFraction, QVariant.fromValue(QVector3D(0.0f, 0.0f, 0.0f)))
The function GraphModifier::zoomToSelectedBar()
contains the rest of the functionality:
def zoomToSelectedBar(self): m_animationCameraX.stop() m_animationCameraY.stop() m_animationCameraZoom.stop() m_animationCameraTarget.stop() camera = m_graph.scene().activeCamera() currentX = camera.xRotation() currentY = camera.yRotation() currentZoom = camera.zoomLevel() currentTarget = camera.target() m_animationCameraX.setStartValue(QVariant.fromValue(currentX)) m_animationCameraY.setStartValue(QVariant.fromValue(currentY)) m_animationCameraZoom.setStartValue(QVariant.fromValue(currentZoom)) m_animationCameraTarget.setStartValue(QVariant.fromValue(currentTarget)) selectedBar = m_graph.selectedSeries() ? m_graph.selectedSeries().selectedBar() QBar3DSeries.invalidSelectionPosition.__init__(self, ) if (selectedBar != QBar3DSeries.invalidSelectionPosition()) { # Normalize selected bar position within axis range to determine target coordinates endTarget = QVector3D() xMin = m_graph.columnAxis().min() xRange = m_graph.columnAxis().max() - xMin zMin = m_graph.rowAxis().min() zRange = m_graph.rowAxis().max() - zMin endTarget.setX((selectedBar.y() - xMin) / xRange * 2.0f - 1.0f) endTarget.setZ((selectedBar.x() - zMin) / zRange * 2.0f - 1.0f) # Rotate the camera so that it always points approximately to the graph center endAngleX = 90.0 - qRadiansToDegrees(qAtan(qreal(endTarget.z() / endTarget.x()))) if (endTarget.x() > 0.0f) endAngleX -= 180.0f barValue = m_graph.selectedSeries().dataProxy().itemAt(selectedBar.x(), selectedBar.y()).value() endAngleY = barValue >= 0.0f if 30.0f else -30.0f if (m_graph.valueAxis().reversed()) = -1.0f m_animationCameraX.setEndValue(QVariant.fromValue(float(endAngleX))) m_animationCameraY.setEndValue(QVariant.fromValue(endAngleY)) m_animationCameraZoom.setEndValue(QVariant.fromValue(250)) m_animationCameraTarget.setEndValue(QVariant.fromValue(endTarget)) else: # No selected bar, so return to the default view m_animationCameraX.setEndValue(QVariant.fromValue(m_defaultAngleX)) m_animationCameraY.setEndValue(QVariant.fromValue(m_defaultAngleY)) m_animationCameraZoom.setEndValue(QVariant.fromValue(m_defaultZoom)) m_animationCameraTarget.setEndValue(QVariant.fromValue(m_defaultTarget)) m_animationCameraX.start() m_animationCameraY.start() m_animationCameraZoom.start() m_animationCameraTarget.start()
The QPropertyAnimation
m_animationCameraTarget
targets target
property, which takes a value normalized to the range (-1, 1). We figure out where the selected bar is relative to axes, and use that as the end value for m_animationCameraTarget
:
endTarget = QVector3D() xMin = m_graph.columnAxis().min() xRange = m_graph.columnAxis().max() - xMin zMin = m_graph.rowAxis().min() zRange = m_graph.rowAxis().max() - zMin endTarget.setX((selectedBar.y() - xMin) / xRange * 2.0f - 1.0f) endTarget.setZ((selectedBar.x() - zMin) / zRange * 2.0f - 1.0f) ... m_animationCameraTarget.setEndValue(QVariant.fromValue(endTarget))
Likewise, we want to angle the camera so that it always points approximately to the center of the graph at the end of the animation:
endAngleX = 90.0 - qRadiansToDegrees(qAtan(qreal(endTarget.z() / endTarget.x()))) if (endTarget.x() > 0.0f) endAngleX -= 180.0f barValue = m_graph.selectedSeries().dataProxy().itemAt(selectedBar.x(), selectedBar.y()).value() endAngleY = barValue >= 0.0f if 30.0f else -30.0f if (m_graph.valueAxis().reversed()) = -1.0f
Example Contents¶
© 2022 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.