QAreaSeries Class
The QAreaSeries class presents data in area charts. 更多...
头文件: | #include <QAreaSeries> |
Instantiated By: | AreaSeries |
基类: | QAbstractSeries |
属性
|
|
- 5 个属性继承自 QAbstractSeries
- 1 个属性继承自 QObject
公有函数
QAreaSeries(QObject *parent = Q_NULLPTR) | |
QAreaSeries(QLineSeries *upperSeries, QLineSeries *lowerSeries = Q_NULLPTR) | |
~QAreaSeries() | |
QColor | borderColor() const |
QBrush | brush() const |
QColor | color() const |
QLineSeries * | lowerSeries() const |
QPen | pen() const |
bool | pointLabelsClipping() const |
QColor | pointLabelsColor() const |
QFont | pointLabelsFont() const |
QString | pointLabelsFormat() const |
bool | pointLabelsVisible() const |
bool | pointsVisible() const |
void | setBorderColor(const QColor &color) |
void | setBrush(const QBrush &brush) |
void | setColor(const QColor &color) |
void | setLowerSeries(QLineSeries *series) |
void | setPen(const QPen &pen) |
void | setPointLabelsClipping(bool enabled = true) |
void | setPointLabelsColor(const QColor &color) |
void | setPointLabelsFont(const QFont &font) |
void | setPointLabelsFormat(const QString &format) |
void | setPointLabelsVisible(bool visible = true) |
void | setPointsVisible(bool visible = true) |
void | setUpperSeries(QLineSeries *series) |
QLineSeries * | upperSeries() const |
重新实现的公有函数
virtual QAbstractSeries::SeriesType | type() const |
- 15 个公有函数继承自 QAbstractSeries
- 32 个公有函数继承自 QObject
信号
void | borderColorChanged(QColor color) |
void | clicked(const QPointF &point) |
void | colorChanged(QColor color) |
void | doubleClicked(const QPointF &point) |
void | hovered(const QPointF &point, bool state) |
void | pointLabelsClippingChanged(bool clipping) |
void | pointLabelsColorChanged(const QColor &color) |
void | pointLabelsFontChanged(const QFont &font) |
void | pointLabelsFormatChanged(const QString &format) |
void | pointLabelsVisibilityChanged(bool visible) |
void | pressed(const QPointF &point) |
void | released(const QPointF &point) |
- 4 个信号继承自 QAbstractSeries
- 2 个信号继承自 QObject
其他继承的成员
- 1 个公有槽函数继承自 QObject
- 1 个公有变量继承自 QObject
- 10 个静态公有成员继承自 QObject
- 9 个受保护的函数继承自 QObject
- 2 个受保护的变量继承自 QObject
详细描述
The QAreaSeries class presents data in area charts.
An area series is used to show quantitative data. It is based on a line series, in the way that the area between the boundary lines is emphasized with color. Since the area series is based on the line series, the QAreaSeries constructor needs a QLineSeries instance, which defines the upper boundary of the area. The area chart is drawn using the bottom of the plot area as the lower boundary by default. Instead of the bottom of the plot area, the lower boundary can be specified by another line. In that case, QAreaSeries should be initialized with two QLineSeries instances.
Note: The terms upper and lower boundary can be misleading in cases where the value of the lower boundary is greater than that of the upper boundary. The main point is that the area between these two boundary lines will be filled.
See the area chart example to learn how to create a simple area chart.
属性
borderColor : QColor
This property holds the line (pen) color of the series. This is a convenience property for modifying the color of the pen.
访问函数:
QColor | borderColor() const |
void | setBorderColor(const QColor &color) |
Notifier signal:
void | borderColorChanged(QColor color) |
参见 QAreaSeries::pen().
color : QColor
This property holds the fill (brush) color of the series. This is a convenience property for modifying the color of the brush.
访问函数:
QColor | color() const |
void | setColor(const QColor &color) |
Notifier signal:
void | colorChanged(QColor color) |
参见 QAreaSeries::brush().
lowerSeries : QLineSeries * const
This property holds the lower one of the two line series used to define area series boundaries.
Note: If QAreaSeries was constructed without a lowerSeries, this is null.
访问函数:
QLineSeries * | lowerSeries() const |
pointLabelsClipping : bool
This property holds the clipping for data point labels. True by default. The labels on the edge of the plot area are cut when clipping is enabled.
访问函数:
bool | pointLabelsClipping() const |
void | setPointLabelsClipping(bool enabled = true) |
Notifier signal:
void | pointLabelsClippingChanged(bool clipping) |
pointLabelsColor : QColor
This property holds the color used for data point labels. By default, the color is the color of the brush defined for labels in the theme.
访问函数:
QColor | pointLabelsColor() const |
void | setPointLabelsColor(const QColor &color) |
Notifier signal:
void | pointLabelsColorChanged(const QColor &color) |
参见 QAreaSeries::pointLabelsFormat.
pointLabelsFont : QFont
This property holds the font used for data point labels.
访问函数:
QFont | pointLabelsFont() const |
void | setPointLabelsFont(const QFont &font) |
Notifier signal:
void | pointLabelsFontChanged(const QFont &font) |
参见 QAreaSeries::pointLabelsFormat.
pointLabelsFormat : QString
This property holds the format used for showing labels with series points.
QAreaSeries supports the following format tags:
@xPoint | The x value of the data point |
@yPoint | The y value of the data point |
For example, the following usage of the format tags would produce labels that have the data point (x, y) shown inside brackets separated by a comma:
series->setPointLabelsFormat("(@xPoint, @yPoint)");
By default, the label format is set to @xPoint, @yPoint
. The labels are shown on the plot area, whereas labels on the edge of the plot area are cut. If the points are close to each other, the labels may overlap.
访问函数:
QString | pointLabelsFormat() const |
void | setPointLabelsFormat(const QString &format) |
Notifier signal:
void | pointLabelsFormatChanged(const QString &format) |
参见 QAreaSeries::pointLabelsVisible, QAreaSeries::pointLabelsFont, and QAreaSeries::pointLabelsColor.
pointLabelsVisible : bool
This property holds the visibility of data point labels. False by default.
访问函数:
bool | pointLabelsVisible() const |
void | setPointLabelsVisible(bool visible = true) |
Notifier signal:
void | pointLabelsVisibilityChanged(bool visible) |
参见 QAreaSeries::pointLabelsFormat and QAreaSeries::pointLabelsClipping.
upperSeries : QLineSeries * const
This property holds the upper one of the two line series used to define area series boundaries.
访问函数:
QLineSeries * | upperSeries() const |
成员函数
QAreaSeries::QAreaSeries(QObject *parent = Q_NULLPTR)
Constructs an area series object without an upper or a lower series with the parent object.
QAreaSeries::QAreaSeries(QLineSeries *upperSeries, QLineSeries *lowerSeries = Q_NULLPTR)
Constructs an area series object that will be spanned between an upperSeries line and a lowerSeries line. If no lowerSeries is passed to the constructor, the x-axis is used as the lower bound instead.
The QAreaSeries does not own the upper or lower series, but the ownership stays with the caller. When the series object is added to QChartView or QChart, the instance ownership is transferred.
QAreaSeries::~QAreaSeries()
Destroys the object.
[signal]
void QAreaSeries::borderColorChanged(QColor color)
This signal is emitted when the line (pen) color changes to color.
Note: Notifier signal for property borderColor.
QBrush QAreaSeries::brush() const
Returns the brush used to draw the line for this series.
参见 setBrush().
[signal]
void QAreaSeries::clicked(const QPointF &point)
This signal is emitted when the user triggers a press on point by clicking it in an area chart.
参见 pressed, released, and doubleClicked.
[signal]
void QAreaSeries::colorChanged(QColor color)
This signal is emitted when the fill (brush) color changes to color.
Note: Notifier signal for property color.
[signal]
void QAreaSeries::doubleClicked(const QPointF &point)
This signal is emitted when the user triggers the first press in an area chart by doubleclicking point.
参见 pressed, released, and clicked.
[signal]
void QAreaSeries::hovered(const QPointF &point, bool state)
This signal is emitted when the user hovers the mouse cursor over a series or moves it away from the series. point shows the origin (coordinate) of the hover event. state is true
when the cursor hovers over the series and turns false when it moves away from the series.
QPen QAreaSeries::pen() const
Returns the pen used to draw the line for this series.
参见 setPen().
[signal]
void QAreaSeries::pointLabelsClippingChanged(bool clipping)
This signal is emitted when the clipping of the data point labels changes to clipping.
Note: Notifier signal for property pointLabelsClipping.
[signal]
void QAreaSeries::pointLabelsColorChanged(const QColor &color)
This signal is emitted when the color used for data point labels changes to color.
Note: Notifier signal for property pointLabelsColor.
[signal]
void QAreaSeries::pointLabelsFontChanged(const QFont &font)
This signal is emitted when the font used for data point labels changes to font.
Note: Notifier signal for property pointLabelsFont.
[signal]
void QAreaSeries::pointLabelsFormatChanged(const QString &format)
This signal is emitted when the format of data point labels is changed.
Note: Notifier signal for property pointLabelsFormat.
[signal]
void QAreaSeries::pointLabelsVisibilityChanged(bool visible)
This signal is emitted when the visibility of the data point labels changes to visible.
Note: Notifier signal for property pointLabelsVisible.
bool QAreaSeries::pointsVisible() const
Returns whether the points are drawn for this series.
参见 setPointsVisible().
[signal]
void QAreaSeries::pressed(const QPointF &point)
This signal is emitted when the user presses the point specified by point in an area chart.
参见 clicked, released, and doubleClicked.
[signal]
void QAreaSeries::released(const QPointF &point)
This signal is emitted when the user releases a press that was triggered on point in an area chart.
参见 pressed, clicked, and doubleClicked.
void QAreaSeries::setBrush(const QBrush &brush)
Sets the brush used for filling the area.
参见 brush().
void QAreaSeries::setLowerSeries(QLineSeries *series)
Sets the series that is to be used as the area chart lower series.
参见 lowerSeries().
void QAreaSeries::setPen(const QPen &pen)
Sets the pen used for drawing the area outline.
参见 pen().
void QAreaSeries::setPointsVisible(bool visible = true)
Determines whether data points are visible and should be drawn on the line.
参见 pointsVisible().
void QAreaSeries::setUpperSeries(QLineSeries *series)
Sets the series that is to be used as the area chart upper series. If the upper series is null, the area chart is not drawn, even if it has a lower series.
参见 upperSeries().
[virtual]
QAbstractSeries::SeriesType QAreaSeries::type() const
Reimplemented from QAbstractSeries::type().
Returns QAbstractSeries::SeriesTypeArea.