CandlestickSet QML Type
Represents a single candlestick item in a candlestick chart. More...
Import Statement: | import QtCharts 2.15 |
Since: | QtCharts 2.2 |
Instantiates: | QCandlestickSet |
Properties
Signals
- clicked()
- doubleClicked()
- hovered(bool status)
- pressed()
- released()
Detailed Description
Five values are needed to create a graphical representation of a candlestick item: open, high, low, close, and timestamp.
See also CandlestickSeries.
Property Documentation
Signal Documentation
This signal is emitted when the candlestick item is clicked.
The corresponding signal handler is onClicked
.
Note: The corresponding handler is onClicked
.
This signal is emitted when the user double-clicks a candlestick item.
The corresponding signal handler is onDoubleClicked
.
Note: The corresponding 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
.
Note: The corresponding 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
.
Note: The corresponding handler is onPressed
.
This signal is emitted when the user releases the mouse press on the candlestick item.
The corresponding signal handler is onReleased
.
Note: The corresponding handler is onReleased
.