##// END OF EJS Templates
Added candlestick chart type...
Added candlestick chart type - added QCandlestickSeries - added QCandlestickSet - added QCandlestickLegendMarker - added model mappers - added Candlestick, CandlestickChartItem, CandlestickData - added SeriesTypeCandlestick to SeriesType enum - added LegendMarkerTypeCandlestick to LegendMarkerType enum - added candlestick chart example - added QML candlestick chart example - added candlestick tester - added autotests - added documentation [ChangeLog][CandlestickChart] Added new chart type: Candlestick Chart. Task-number: QTBUG-50544 Change-Id: I17d18dfa23e0ea209bf51ab1e349585b9cb50a8f Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io>

File last commit:

r2896:facc2941efbf
r2896:facc2941efbf
Show More
charts.pro
68 lines | 1.6 KiB | text/idl | PrologLexer
Titta Heikkala
Qt Charts project file structure change...
r2712 TEMPLATE = subdirs
SUBDIRS += areachart \
customchart \
linechart \
percentbarchart \
piechart \
piechartdrilldown \
scatterchart \
scatterinteractions \
splinechart \
stackedbarchart \
stackedbarchartdrilldown \
zoomlinechart \
modeldata \
barchart \
boxplotchart \
Alexander Mishin
Added candlestick chart type...
r2896 candlestickchart \
Titta Heikkala
Qt Charts project file structure change...
r2712 legend \
barmodelmapper \
lineandbar \
horizontalbarchart \
horizontalstackedbarchart \
horizontalpercentbarchart \
donutbreakdown \
temperaturerecords \
donutchart \
multiaxis \
legendmarkers \
logvalueaxis \
polarchart \
piechartcustomization \
dynamicspline \
nesteddonuts \
chartinteractions \
callout \
chartthemes
qtHaveModule(quick) {
SUBDIRS += qmlboxplot \
Alexander Mishin
Added candlestick chart type...
r2896 qmlcandlestick \
Titta Heikkala
Qt Charts project file structure change...
r2712 qmlpiechart \
qmlweather \
qmlf1legends \
qmlcustomizations \
qmlaxes \
qmlcustomlegend \
qmlpolarchart \
qmlchart \
qmloscilloscope
}
Titta Heikkala
Fix check for multimedia module...
r2764 qtHaveModule(multimedia) {
Titta Heikkala
Qt Charts project file structure change...
r2712 SUBDIRS += audio
} else {
Miikka Heikkinen
Accelerating lineseries with OpenGL...
r2820 message("QtMultimedia library not available. Some examples are disabled.")
}
contains(QT_CONFIG, opengl) {
SUBDIRS += openglseries
} else {
message("OpenGL not available. Some examples are disabled.")
Titta Heikkala
Qt Charts project file structure change...
r2712 }
Miikka Heikkinen
No longer automatically disable QDateTimeAxis on ARM platforms...
r2861 !contains(QT_COORD_TYPE, float): {
Titta Heikkala
Qt Charts project file structure change...
r2712 SUBDIRS += \
datetimeaxis
}