Base type for all Qt Graph series types. 更多...
| import 語句: |
import QtGraphs
|
| 在 C++: | QAbstractSeries |
| 繼承者: |
AreaSeries , BarSeries , PieSeries ,和 XYSeries |
(從 6.10 起)
(從 6.10 起)
(從 6.10 起)
This type cannot be instantiated directly. Instead, one of the following derived types should be used to create a series: LineSeries , SplineSeries , BarSeries ,或 ScatterSeries .
|
axisX
:
AbstractAxis
|
The x-axis used for this series. Creates a separate axis from the one defined in GraphsView showing the user multiple axis per graph.
此特性在 Qt 6.10 引入。
另請參閱 axisY .
|
axisY
:
AbstractAxis
|
The y-axis used for this series. Creates a separate axis from the one defined in GraphsView showing the user multiple axis per graph.
此特性在 Qt 6.10 引入。
另請參閱 axisX .
|
hoverable : bool |
Controls if the series can be hovered with mouse/touch. By default,
hoverable
被設為
false
.
|
hovered
:
bool
|
Can be used to check whether mouse/touch is currently hovering on a series.
另請參閱 QAbstractSeries::hovered .
|
legendData
:
list
<
LegendData
>
|
Contains information needed to create a legend marker for a data set in a graph.
|
名稱 : string |
The name of the series. The name is displayed in the legend for the series and it supports HTML formatting.
|
opacity : real |
The opacity of the series. By default, the opacity is 1.0. The valid values range from 0.0 (transparent) to 1.0 (opaque).
|
selectable : bool |
Controls if the series can be selected with mouse/touch. By default,
selectable
被設為
false
.
|
type
:
enumeration
|
係列的類型。
| 常量 | 描述 |
|---|---|
AbstractSeries.SeriesType.Line
|
A line graph. |
AbstractSeries.SeriesType.Bar
|
A bar graph. |
AbstractSeries.SeriesType.Scatter
|
A scatter graph. |
AbstractSeries.SeriesType.Pie
|
A pie graph. |
AbstractSeries.SeriesType.Spline
|
A spline graph. |
AbstractSeries.SeriesType.Area
|
An area graph. |
|
valuesMultiplier : real |
This variable can be used for animating the series values so they scale from 0 to actual value size. By default, the valuesMultiplier is 1.0. The valid values range from 0.0 (height 0) to 1.0 (full value).
|
visible : bool |
The visibility used for this series. By default,
visible
被設為
true
.
|
zValue
:
int
|
The series list of GraphsView is sorted by the zValue property. Since each series type is rendered at once, the order mostly works as an internal order of each series type. The highest zValue of each series type determines the order of rendering among series types. The default value is 0.
此特性在 Qt 6.10 引入。
|
hoverableChanged () |
This signal is emitted when the series hoverable 改變。
注意:
相應處理程序是
onHoverableChanged
.
|
hoveredChanged () |
This signal is emitted when the series hovered 改變。
注意:
相應處理程序是
onHoveredChanged
.
|
legendDataChanged () |
This signal is emitted when legend data changes.
注意:
相應處理程序是
onLegendDataChanged
.
|
nameChanged () |
This signal is emitted when the series name 改變。
注意:
相應處理程序是
onNameChanged
.
|
opacityChanged () |
此信號發射,當 opacity of the series changes.
注意:
相應處理程序是
onOpacityChanged
.
|
selectableChanged () |
This signal is emitted when the series selectable 改變。
注意:
相應處理程序是
onSelectableChanged
.
|
themeChanged () |
This signal is emitted when the series theme changes.
注意:
相應處理程序是
onThemeChanged
.
|
valuesMultiplierChanged () |
此信號發射,當 valuesMultiplier of the series changes.
注意:
相應處理程序是
onValuesMultiplierChanged
.
|
visibleChanged () |
This signal is emitted when the series visibility changes.
注意:
相應處理程序是
onVisibleChanged
.