QBarDataItem Class
The QBarDataItem class provides a container for resolved data to be added to bar graphs. More...
Header: | #include <QBarDataItem> |
Since: | QtDataVisualization 1.0 |
Public Functions
QBarDataItem() | |
QBarDataItem(float value) | |
QBarDataItem(float value, float angle) | |
QBarDataItem(const QBarDataItem &other) | |
~QBarDataItem() | |
float | rotation() const |
void | setRotation(float angle) |
void | setValue(float val) |
float | value() const |
QBarDataItem & | operator=(const QBarDataItem &other) |
Detailed Description
The QBarDataItem class provides a container for resolved data to be added to bar graphs.
A QBarDataItem holds data for a single rendered bar in a graph. Bar data proxies parse data into QBarDataItem instances for visualizing.
See also QBarDataProxy and Qt Data Visualization C++ Classes.
Member Function Documentation
QBarDataItem::QBarDataItem()
Constructs QBarDataItem.
QBarDataItem::QBarDataItem(float value)
Constructs QBarDataItem with value.
QBarDataItem::QBarDataItem(float value, float angle)
Constructs QBarDataItem with value and angle
QBarDataItem::QBarDataItem(const QBarDataItem &other)
Constructs a copy of other.
QBarDataItem::~QBarDataItem()
Destroys QBarDataItem.
float QBarDataItem::rotation() const
Returns rotation angle in degrees for this data item.
See also setRotation().
void QBarDataItem::setRotation(float angle)
Sets rotation angle in degrees for this data item.
See also rotation().
void QBarDataItem::setValue(float val)
Sets value val to this data item.
See also value().
float QBarDataItem::value() const
Returns value of this data item.
See also setValue().
QBarDataItem &QBarDataItem::operator=(const QBarDataItem &other)
Assigns a copy of other to this object.
© 2017 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.