IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)

QScatterDataProxy Class

The QScatterDataProxy class is the data proxy for 3D scatter graphs.

This class was introduced in QtDataVisualization 1.0.

Article lu   fois.

L'auteur

Liens sociaux

Viadeo Twitter Facebook Share on Google+   

QScatterDataProxy Class

  • Header: QScatterDataProxy

  • Since: QtDataVisualization 1.0

  • CMake:

    find_package(Qt6 REQUIRED COMPONENTS DataVisualization)

    target_link_libraries(mytarget PRIVATE Qt6::DataVisualization)

  • qmake: QT += datavisualization

  • Inherited By: QItemModelScatterDataProxy

  • Instantiated By: qml-qtdatavisualization-scatterdataproxy.xml

  • Inherits: QAbstractDataProxy

  • Inherited By: QItemModelScatterDataProxy

Detailed Description

A scatter data proxy handles adding, inserting, changing, and removing data items.

QScatterDataProxy takes ownership of all QtDataVisualization::QScatterDataArray and QScatterDataItem objects passed to it.

See Also

Property Documentation

 

[read-only] itemCount : const int

This property holds the number of items in the array.

Access functions:

  • int itemCount() const

Notifier signal:

  • void itemCountChanged(int count)

[read-only] series : QScatter3DSeries* const

This property holds the series this proxy is attached to.

Access functions:

  • *series() const

Notifier signal:

  • void seriesChanged( *series)

Member Function Documentation

 

[explicit] QScatterDataProxy::QScatterDataProxy(QObject *parent = nullptr)

Constructs QScatterDataProxy with the given parent.

[virtual] QScatterDataProxy::~QScatterDataProxy()

Deletes the scatter data proxy.

int QScatterDataProxy::addItem(const QScatterDataItem &item)

Adds the item item to the end of the array.

Returns the index of the added item.

int QScatterDataProxy::addItems(const QScatterDataArray &items)

Adds the items specified by items to the end of the array.

Returns the index of the first added item.

const QScatterDataArray *QScatterDataProxy::array() const

Returns the pointer to the data array.

void QScatterDataProxy::arrayReset()

This signal is emitted when the data array is reset. If the contents of the whole array are changed without calling resetArray(), this signal needs to be emitted to update the graph.

void QScatterDataProxy::insertItem(int index, const QScatterDataItem &item)

Inserts the item item to the position index. If the index is equal to the data array size, the item is added to the array.

void QScatterDataProxy::insertItems(int index, const QScatterDataArray &items)

Inserts the items specified by items to the position index. If the index is equal to data array size, the items are added to the array.

const QScatterDataItem *QScatterDataProxy::itemAt(int index) const

Returns the pointer to the item at the index index. It is guaranteed to be valid only until the next call that modifies data.

void QScatterDataProxy::itemsAdded(int startIndex, int count)

This signal is emitted when the number of items specified by count is added starting at the position startIndex. If items are added to the array without calling addItem() or addItems(), this signal needs to be emitted to update the graph.

void QScatterDataProxy::itemsChanged(int startIndex, int count)

This signal is emitted when the number of items specified by count is changed starting at the position startIndex. If items are changed in the array without calling setItem() or setItems(), this signal needs to be emitted to update the graph.

void QScatterDataProxy::itemsInserted(int startIndex, int count)

This signal is emitted when the number of items specified by count is inserted starting at the position startIndex. If items are inserted into the array without calling insertItem() or insertItems(), this signal needs to be emitted to update the graph.

void QScatterDataProxy::itemsRemoved(int startIndex, int count)

This signal is emitted when the number of rows specified by count is removed starting at the position startIndex. The index may be larger than the current array size if items are removed from the end. If items are removed from the array without calling removeItems(), this signal needs to be emitted to update the graph.

void QScatterDataProxy::removeItems(int index, int removeCount)

Removes the number of items specified by removeCount starting at the position index. Attempting to remove items past the end of the array does nothing.

void QScatterDataProxy::resetArray(QScatterDataArray *newArray)

Takes ownership of the array newArray. Clears the existing array if the new array differs from it. If the arrays are the same, this function just triggers the arrayReset() signal.

Passing a null array deletes the old array and creates a new empty array.

void QScatterDataProxy::setItem(int index, const QScatterDataItem &item)

Replaces the item at the position index with the item item.

void QScatterDataProxy::setItems(int index, const QScatterDataArray &items)

Replaces the items starting from the position index with the items specified by items.

Related Non-Members

 

QScatterDataArray

A list of QScatterDataItem objects.

Vous avez aimé ce tutoriel ? Alors partagez-le en cliquant sur les boutons suivants : Viadeo Twitter Facebook Share on Google+