QSurface3DSeries Class

The QSurface3DSeries class represents a data series in a 3D surface graph. More...

Header: #include <QSurface3DSeries>
CMake: find_package(Qt6 REQUIRED COMPONENTS DataVisualization)
target_link_libraries(mytarget PRIVATE Qt6::DataVisualization)
qmake: QT += datavisualization
Since: QtDataVisualization 1.0
Instantiated By: Surface3DSeries
Inherits: QAbstract3DSeries

Public Types

enum DrawFlag { DrawWireframe, DrawSurface, DrawSurfaceAndWireframe }
flags DrawFlags

Properties

Public Functions

virtual ~QSurface3DSeries()
QSurfaceDataProxy *dataProxy() const
QSurface3DSeries::DrawFlags drawMode() const
bool isFlatShadingEnabled() const
bool isFlatShadingSupported() const
QPoint selectedPoint() const
void setDataProxy()
void setDrawMode()
void setFlatShadingEnabled()
void setSelectedPoint()
void setTexture()
void setTextureFile()
void setWireframeColor()
QImage texture() const
QString textureFile() const
QColor wireframeColor() const

Signals

Static Public Members

Detailed Description

This class manages the series specific visual elements, as well as the series data (via a data proxy).

If no data proxy is set explicitly for the series, the series creates a default proxy. Setting another proxy will destroy the existing proxy and all data added to it.

The object mesh set via the QAbstract3DSeries::mesh property defines the selection pointer shape in a surface series.

QSurface3DSeries supports the following format tags for QAbstract3DSeries::setItemLabelFormat():

@xTitleTitle from x-axis
@yTitleTitle from y-axis
@zTitleTitle from z-axis
@xLabelItem value formatted using the format of the x-axis. For more information, see QValue3DAxis::setLabelFormat().
@yLabelItem value formatted using the format of the y-axis. For more information, see QValue3DAxis::setLabelFormat().
@zLabelItem value formatted using the format of the z-axis. For more information, see QValue3DAxis::setLabelFormat().
@seriesNameName of the series

For example:

 proxy->setItemLabelFormat(QStringLiteral("@valueTitle for (@rowLabel, @colLabel): %.1f"));

See also Qt Data Visualization Data Handling.

Member Type Documentation

enum QSurface3DSeries::DrawFlag
flags QSurface3DSeries::DrawFlags

The drawing mode of the surface. Values of this enumeration can be combined with the OR operator.

ConstantValueDescription
QSurface3DSeries::DrawWireframe1Only the grid is drawn.
QSurface3DSeries::DrawSurface2Only the surface is drawn.
QSurface3DSeries::DrawSurfaceAndWireframeDrawWireframe | DrawSurfaceBoth the surface and grid are drawn.

The DrawFlags type is a typedef for QFlags<DrawFlag>. It stores an OR combination of DrawFlag values.

Property Documentation

dataProxy : QSurfaceDataProxy*

This property holds the active data proxy.

The series assumes ownership of any proxy set to it and deletes any previously set proxy when a new one is added. The proxy cannot be null or set to another series.

Access functions:

QSurfaceDataProxy *dataProxy() const
void setDataProxy()

Notifier signal:

void dataProxyChanged()

drawMode : DrawFlags

The drawing mode.

Possible values are the values of DrawFlag. Clearing all flags is not allowed.

Access functions:

QSurface3DSeries::DrawFlags drawMode() const
void setDrawMode()

Notifier signal:

void drawModeChanged()

flatShadingEnabled : bool

This property holds whether surface flat shading is enabled.

Preset to true by default.

When disabled, the normals on the surface are interpolated making the edges look round. When enabled, the normals are kept the same on a triangle making the color of the triangle solid. This makes the data more readable from the model.

Note: Flat shaded surfaces require at least GLSL version 1.2 with GL_EXT_gpu_shader4 extension. The value of the flatShadingSupported property indicates whether flat shading is supported at runtime.

Access functions:

bool isFlatShadingEnabled() const
void setFlatShadingEnabled()

Notifier signal:

void flatShadingEnabledChanged()

[read-only] flatShadingSupported : const bool

This property holds whether surface flat shading is supported by the current system.

Flat shading for surfaces requires at least GLSL version 1.2 with GL_EXT_gpu_shader4 extension. If true, flat shading for surfaces is supported.

Note: This read-only property is set to its correct value after the first render pass. Until then it is always true.

Access functions:

bool isFlatShadingSupported() const

Notifier signal:

void flatShadingSupportedChanged()

selectedPoint : QPoint

This property holds the surface grid point that is selected in the series.

Access functions:

QPoint selectedPoint() const
void setSelectedPoint()

Notifier signal:

void selectedPointChanged()

texture : QImage

This property holds the texture for the surface as a QImage.

Setting an empty QImage clears the texture.

Access functions:

QImage texture() const
void setTexture()

Notifier signal:

void textureChanged()

textureFile : QString

This property holds the texture for the surface as a file.

Setting an empty file name clears the texture.

Access functions:

QString textureFile() const
void setTextureFile()

Notifier signal:

void textureFileChanged()

[since 6.3] wireframeColor : QColor

This property holds the color for the surface wireframe.

This property was introduced in Qt 6.3.

Access functions:

QColor wireframeColor() const
void setWireframeColor()

Notifier signal:

void wireframeColorChanged()

Member Function Documentation

[virtual] QSurface3DSeries::~QSurface3DSeries()

Deletes the surface 3D series.

[static] QPoint QSurface3DSeries::invalidSelectionPosition()

Returns the QPoint signifying an invalid selection position. This is set to the selectedPoint property to clear the selection from this series.

See also QAbstract3DGraph::clearSelection().