CandlestickChart¶
OHLC candlesticks for professional price series.
import QWinUI3.Extras · src/extras/QWinUI3/Extras/CandlestickChart.qml
Category: Charts & gauges · Library: v2.80
Gallery: CandlestickChart — src/gallery/pages/CandlestickChartPage.qml
Extends Control.
Example¶
CandlestickChart {
candles: [
{ o: 100, h: 112, l: 96, c: 108 },
{ o: 108, h: 110, l: 101, c: 103 }
]
}
Notes¶
Experimental Canvas OHLC. Not part of the stable six. ChartSeries is Y-only — pass objects.
API¶
Properties¶
| Name | Type | Description |
|---|---|---|
candles |
var |
OHLC objects { o, h, l, c, label? } |
title |
string |
Primary title text |
emptyText |
string |
— |
interactive |
bool |
— |
isInteractive |
alias |
— |
hoverIndex |
int |
— |
upColor |
color |
— |
downColor |
color |
— |
showVolume |
bool |
Draw volume bars when candles include v or volume |
isEmpty |
bool |
— |
Signals¶
No custom signals (use inherited signals from the base type).
Methods¶
No custom methods (use inherited methods from the base type).
Inherited from Control¶
Also available (base type / Qt Quick Controls):
paddingfontbackground/contentItem
Generated from module sources by scripts/generate_component_docs.py — do not edit by hand.