Represents a single candlestick item in a candlestick chart. 更多...
import 语句: | import QtCharts 2.2 |
Since: | QtCharts 2.2 |
实例化: | QCandlestickSet |
Five values are needed to create a graphical representation of a candlestick item: open , high , low , close ,和 timestamp .
另请参阅 CandlestickSeries .
The name of the file used as a brush for the candlestick item.
The close value of the candlestick item.
The high value of the candlestick item.
The low value of the candlestick item.
The open value of the candlestick item.
The timestamp value of the candlestick item.
This signal is emitted when the candlestick item is clicked.
The corresponding signal handler is
onClicked
.
This signal is emitted when the user double-clicks a candlestick item.
The corresponding signal handler is
onDoubleClicked
.
This signal is emitted when a mouse is hovered over a candlestick item.
When the mouse moves over the item,
status
turns
true
, and when the mouse moves away again, it turns
false
.
The corresponding signal handler is
onHovered
.
This signal is emitted when the user clicks the candlestick item and holds down the mouse button.
The corresponding signal handler is
onPressed
.
This signal is emitted when the user releases the mouse press on the candlestick item.
The corresponding signal handler is
onReleased
.