blob: e94d70a2f0d2ccc658184e3a9444abcd1ef1e4b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
/*!
* \class QBarDataItem
* \inmodule QtGraphs
* \ingroup graphs_3D
* \brief The QBarDataItem class provides a container for resolved data to be
* added to bar graphs.
*
* A bar data item holds the data for a single rendered bar in a graph.
* Bar data proxies parse data into QBarDataItem instances for bar graphs.
*
* \sa QBarDataProxy, {Qt Graphs C++ Classes for 3D}
*/
/*!
* \fn constexpr QBarDataItem::QBarDataItem() noexcept
* Constructs a bar data item.
*/
/*!
* \fn explicit constexpr QBarDataItem::QBarDataItem(float value) noexcept
* Constructs a bar data item with the value \a value.
*/
/*!
* \fn explicit constexpr QBarDataItem::QBarDataItem(float value, float angle) noexcept
* Constructs a bar data item with the value \a value and angle \a angle.
*/
/*!
* \fn void QBarDataItem::setValue(float val)
* Sets the value \a val to this data item.
*/
/*!
* \fn float QBarDataItem::value() const
* Returns the value of this data item.
*/
/*!
* \fn void QBarDataItem::setRotation(float angle)
* Sets the rotation angle \a angle in degrees for this data item.
*/
/*!
* \fn float QBarDataItem::rotation() const
* Returns the rotation angle in degrees for this data item.
*/
|