##// END OF EJS Templates
Added plotAreaChanged signal to chart....
Added plotAreaChanged signal to chart. The plotArea property was also introduced, though it was previously available via getter function. The signal with same name on QML side was linked to the new signal. Task-number: QTRD-3330 Change-Id: I8d985762194800e1b8743d0a7429ef4d0356bd98 Reviewed-by: Mika Salmela <mika.salmela@theqtcompany.com>

File last commit:

r2712:c544258484ff
r2716:bf30bed1cefb
Show More
plugins.qmltypes
2305 lines | 84.4 KiB | text/plain | TextLexer
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 import QtQuick.tooling 1.1
// This file describes the plugin-supplied types contained in the library.
// It is used for QML tooling purposes only.
Titta Heikkala
Add possibility to set brush image via QML API...
r2681 //
// This file was auto-generated by:
Titta Heikkala
Qt Charts project file structure change...
r2712 // 'qmlplugindump -nonrelocatable QtCharts 2.0'
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672
Module {
Component {
name: "QGraphicsObject"
defaultProperty: "children"
prototype: "QObject"
Property { name: "parent"; type: "QGraphicsObject"; isPointer: true }
Property { name: "opacity"; type: "double" }
Property { name: "enabled"; type: "bool" }
Property { name: "visible"; type: "bool" }
Property { name: "pos"; type: "QPointF" }
Property { name: "x"; type: "double" }
Property { name: "y"; type: "double" }
Property { name: "z"; type: "double" }
Property { name: "rotation"; type: "double" }
Property { name: "scale"; type: "double" }
Property { name: "transformOriginPoint"; type: "QPointF" }
Property { name: "effect"; type: "QGraphicsEffect"; isPointer: true }
Property {
name: "children"
type: "QDeclarativeListProperty<QGraphicsObject>"
isReadonly: true
}
Property { name: "width"; type: "double" }
Property { name: "height"; type: "double" }
}
Component {
name: "QGraphicsWidget"
defaultProperty: "children"
prototype: "QGraphicsObject"
Property { name: "palette"; type: "QPalette" }
Property { name: "font"; type: "QFont" }
Property { name: "layoutDirection"; type: "Qt::LayoutDirection" }
Property { name: "size"; type: "QSizeF" }
Property { name: "minimumSize"; type: "QSizeF" }
Property { name: "preferredSize"; type: "QSizeF" }
Property { name: "maximumSize"; type: "QSizeF" }
Property { name: "sizePolicy"; type: "QSizePolicy" }
Property { name: "focusPolicy"; type: "Qt::FocusPolicy" }
Property { name: "windowFlags"; type: "Qt::WindowFlags" }
Property { name: "windowTitle"; type: "string" }
Property { name: "geometry"; type: "QRectF" }
Property { name: "autoFillBackground"; type: "bool" }
Property { name: "layout"; type: "QGraphicsLayout"; isPointer: true }
Method { name: "close"; type: "bool" }
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::DeclarativeAreaSeries"
prototype: "QtCharts::QAreaSeries"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 exports: [
Titta Heikkala
Qt Charts project file structure change...
r2712 "QtCharts/AreaSeries 1.0",
"QtCharts/AreaSeries 1.1",
"QtCharts/AreaSeries 1.2",
"QtCharts/AreaSeries 1.3",
"QtCharts/AreaSeries 1.4",
"QtCharts/AreaSeries 2.0"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 ]
Titta Heikkala
Qt Charts project file structure change...
r2712 exportMetaObjectRevisions: [0, 1, 2, 3, 4, 4]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "upperSeries"; type: "DeclarativeLineSeries"; isPointer: true }
Property { name: "lowerSeries"; type: "DeclarativeLineSeries"; isPointer: true }
Property { name: "axisX"; revision: 1; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisY"; revision: 1; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisXTop"; revision: 2; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisYRight"; revision: 2; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisAngular"; revision: 3; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisRadial"; revision: 3; type: "QAbstractAxis"; isPointer: true }
Property { name: "borderWidth"; revision: 1; type: "double" }
Titta Heikkala
Add possibility to set brush image via QML API...
r2681 Property { name: "brushFilename"; revision: 4; type: "string" }
Property { name: "brush"; revision: 4; type: "QBrush" }
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Signal {
name: "axisXChanged"
revision: 1
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisYChanged"
revision: 1
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "borderWidthChanged"
revision: 1
Parameter { name: "width"; type: "double" }
}
Signal {
name: "axisXTopChanged"
revision: 2
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisYRightChanged"
revision: 2
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisAngularChanged"
revision: 3
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisRadialChanged"
revision: 3
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Titta Heikkala
Add possibility to set brush image via QML API...
r2681 Signal { name: "brushChanged"; revision: 4 }
Signal {
name: "brushFilenameChanged"
revision: 4
Parameter { name: "brushFilename"; type: "string" }
}
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 }
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::DeclarativeAxes"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 prototype: "QObject"
Titta Heikkala
Qt Charts project file structure change...
r2712 exports: [
"QtCharts/DeclarativeAxes 1.0",
"QtCharts/DeclarativeAxes 2.0"
]
Andy Shaw
Add QVBoxPlotModelMapper and QBoxPlotModelMapper as types for QtQuick 2...
r2705 isCreatable: false
Titta Heikkala
Qt Charts project file structure change...
r2712 exportMetaObjectRevisions: [0, 0]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "axisX"; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisY"; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisXTop"; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisYRight"; type: "QAbstractAxis"; isPointer: true }
Signal {
name: "axisXChanged"
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisYChanged"
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisXTopChanged"
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisYRightChanged"
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::DeclarativeBarSeries"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 defaultProperty: "seriesChildren"
Titta Heikkala
Qt Charts project file structure change...
r2712 prototype: "QtCharts::QBarSeries"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 exports: [
Titta Heikkala
Qt Charts project file structure change...
r2712 "QtCharts/BarSeries 1.0",
"QtCharts/BarSeries 1.1",
"QtCharts/BarSeries 1.2",
"QtCharts/BarSeries 2.0"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 ]
Titta Heikkala
Qt Charts project file structure change...
r2712 exportMetaObjectRevisions: [0, 1, 2, 2]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "axisX"; revision: 1; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisY"; revision: 1; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisXTop"; revision: 2; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisYRight"; revision: 2; type: "QAbstractAxis"; isPointer: true }
Property { name: "seriesChildren"; type: "QObject"; isList: true; isReadonly: true }
Signal {
name: "axisXChanged"
revision: 1
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisYChanged"
revision: 1
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisXTopChanged"
revision: 2
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisYRightChanged"
revision: 2
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Method {
name: "appendSeriesChildren"
Parameter { name: "list"; type: "QObject"; isList: true; isPointer: true }
Parameter { name: "element"; type: "QObject"; isPointer: true }
}
Method {
name: "at"
type: "DeclarativeBarSet*"
Parameter { name: "index"; type: "int" }
}
Method {
name: "append"
type: "DeclarativeBarSet*"
Parameter { name: "label"; type: "string" }
Parameter { name: "values"; type: "QVariantList" }
}
Method {
name: "insert"
type: "DeclarativeBarSet*"
Parameter { name: "index"; type: "int" }
Parameter { name: "label"; type: "string" }
Parameter { name: "values"; type: "QVariantList" }
}
Method {
name: "remove"
type: "bool"
Parameter { name: "barset"; type: "QBarSet"; isPointer: true }
}
Method { name: "clear" }
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::DeclarativeBarSet"
prototype: "QtCharts::QBarSet"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 exports: [
Titta Heikkala
Qt Charts project file structure change...
r2712 "QtCharts/BarSet 1.0",
"QtCharts/BarSet 1.1",
"QtCharts/BarSet 1.4",
"QtCharts/BarSet 2.0"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 ]
Titta Heikkala
Qt Charts project file structure change...
r2712 exportMetaObjectRevisions: [0, 0, 2, 2]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "values"; type: "QVariantList" }
Property { name: "borderWidth"; revision: 1; type: "double" }
Property { name: "count"; type: "int"; isReadonly: true }
Titta Heikkala
Add possibility to set brush image via QML API...
r2681 Property { name: "brushFilename"; revision: 2; type: "string" }
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Signal {
name: "countChanged"
Parameter { name: "count"; type: "int" }
}
Signal {
name: "borderWidthChanged"
revision: 1
Parameter { name: "width"; type: "double" }
}
Titta Heikkala
Add possibility to set brush image via QML API...
r2681 Signal {
name: "brushFilenameChanged"
revision: 2
Parameter { name: "brushFilename"; type: "string" }
}
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Method {
name: "append"
Parameter { name: "value"; type: "double" }
}
Method {
name: "remove"
Parameter { name: "index"; type: "int" }
Parameter { name: "count"; type: "int" }
}
Method {
name: "remove"
Parameter { name: "index"; type: "int" }
}
Method {
name: "replace"
Parameter { name: "index"; type: "int" }
Parameter { name: "value"; type: "double" }
}
Method {
name: "at"
type: "double"
Parameter { name: "index"; type: "int" }
}
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::DeclarativeBoxPlotSeries"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 defaultProperty: "seriesChildren"
Titta Heikkala
Qt Charts project file structure change...
r2712 prototype: "QtCharts::QBoxPlotSeries"
Titta Heikkala
Add possibility to set brush image via QML API...
r2681 exports: [
Titta Heikkala
Qt Charts project file structure change...
r2712 "QtCharts/BoxPlotSeries 1.3",
"QtCharts/BoxPlotSeries 1.4",
"QtCharts/BoxPlotSeries 2.0"
Titta Heikkala
Add possibility to set brush image via QML API...
r2681 ]
Titta Heikkala
Qt Charts project file structure change...
r2712 exportMetaObjectRevisions: [0, 1, 1]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "axisX"; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisY"; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisXTop"; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisYRight"; type: "QAbstractAxis"; isPointer: true }
Property { name: "seriesChildren"; type: "QObject"; isList: true; isReadonly: true }
Titta Heikkala
Add possibility to set brush image via QML API...
r2681 Property { name: "brushFilename"; revision: 1; type: "string" }
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Signal {
name: "axisXChanged"
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisYChanged"
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisXTopChanged"
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisYRightChanged"
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "clicked"
Parameter { name: "boxset"; type: "DeclarativeBoxSet"; isPointer: true }
}
Signal {
name: "hovered"
Parameter { name: "status"; type: "bool" }
Parameter { name: "boxset"; type: "DeclarativeBoxSet"; isPointer: true }
}
Titta Heikkala
Add possibility to set brush image via QML API...
r2681 Signal {
name: "brushFilenameChanged"
revision: 1
Parameter { name: "brushFilename"; type: "string" }
}
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Method {
name: "appendSeriesChildren"
Titta Heikkala
Qt Charts project file structure change...
r2712 Parameter { name: "list"; type: "QObject"; isList: true; isPointer: true }
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Parameter { name: "element"; type: "QObject"; isPointer: true }
}
Method {
name: "onHovered"
Parameter { name: "status"; type: "bool" }
Parameter { name: "boxset"; type: "QBoxSet"; isPointer: true }
}
Method {
name: "onClicked"
Parameter { name: "boxset"; type: "QBoxSet"; isPointer: true }
}
Method {
name: "at"
type: "DeclarativeBoxSet*"
Parameter { name: "index"; type: "int" }
}
Method {
name: "append"
type: "DeclarativeBoxSet*"
Parameter { name: "label"; type: "string" }
Parameter { name: "values"; type: "QVariantList" }
}
Method {
name: "append"
Parameter { name: "box"; type: "DeclarativeBoxSet"; isPointer: true }
}
Method {
name: "insert"
type: "DeclarativeBoxSet*"
Parameter { name: "index"; type: "int" }
Parameter { name: "label"; type: "string" }
Parameter { name: "values"; type: "QVariantList" }
}
Method {
name: "remove"
type: "bool"
Parameter { name: "box"; type: "DeclarativeBoxSet"; isPointer: true }
}
Method { name: "clear" }
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::DeclarativeBoxSet"
prototype: "QtCharts::QBoxSet"
Titta Heikkala
Add possibility to set brush image via QML API...
r2681 exports: [
Titta Heikkala
Qt Charts project file structure change...
r2712 "QtCharts/BoxSet 1.3",
"QtCharts/BoxSet 1.4",
"QtCharts/BoxSet 2.0"
Titta Heikkala
Add possibility to set brush image via QML API...
r2681 ]
Titta Heikkala
Qt Charts project file structure change...
r2712 exportMetaObjectRevisions: [0, 1, 1]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Enum {
name: "ValuePositions"
values: {
"LowerExtreme": 0,
"LowerQuartile": 1,
"Median": 2,
"UpperQuartile": 3,
"UpperExtreme": 4
}
}
Property { name: "values"; type: "QVariantList" }
Property { name: "label"; type: "string" }
Property { name: "count"; type: "int"; isReadonly: true }
Titta Heikkala
Add possibility to set brush image via QML API...
r2681 Property { name: "brushFilename"; revision: 1; type: "string" }
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Signal { name: "changedValues" }
Signal {
name: "changedValue"
Parameter { name: "index"; type: "int" }
}
Titta Heikkala
Add possibility to set brush image via QML API...
r2681 Signal {
name: "brushFilenameChanged"
revision: 1
Parameter { name: "brushFilename"; type: "string" }
}
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Method {
name: "append"
Parameter { name: "value"; type: "double" }
}
Method { name: "clear" }
Method {
name: "at"
type: "double"
Parameter { name: "index"; type: "int" }
}
Method {
name: "setValue"
Parameter { name: "index"; type: "int" }
Parameter { name: "value"; type: "double" }
}
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::DeclarativeCategoryAxis"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 defaultProperty: "axisChildren"
Titta Heikkala
Qt Charts project file structure change...
r2712 prototype: "QtCharts::QCategoryAxis"
exports: ["QtCharts/CategoryAxis 1.1", "QtCharts/CategoryAxis 2.0"]
exportMetaObjectRevisions: [0, 0]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "axisChildren"; type: "QObject"; isList: true; isReadonly: true }
Method {
name: "append"
Parameter { name: "label"; type: "string" }
Parameter { name: "categoryEndValue"; type: "double" }
}
Method {
name: "remove"
Parameter { name: "label"; type: "string" }
}
Method {
name: "replace"
Parameter { name: "oldLabel"; type: "string" }
Parameter { name: "newLabel"; type: "string" }
}
Method {
name: "appendAxisChildren"
Parameter { name: "list"; type: "QObject"; isList: true; isPointer: true }
Parameter { name: "element"; type: "QObject"; isPointer: true }
}
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::DeclarativeCategoryRange"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 prototype: "QObject"
Titta Heikkala
Qt Charts project file structure change...
r2712 exports: ["QtCharts/CategoryRange 1.1", "QtCharts/CategoryRange 2.0"]
exportMetaObjectRevisions: [0, 0]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "endValue"; type: "double" }
Property { name: "label"; type: "string" }
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::DeclarativeChart"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 defaultProperty: "data"
prototype: "QQuickPaintedItem"
exports: [
Titta Heikkala
Qt Charts project file structure change...
r2712 "QtCharts/ChartView 1.0",
"QtCharts/ChartView 1.1",
"QtCharts/ChartView 1.2",
"QtCharts/ChartView 1.3",
"QtCharts/ChartView 2.0"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 ]
Titta Heikkala
Qt Charts project file structure change...
r2712 exportMetaObjectRevisions: [0, 1, 2, 3, 4]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Enum {
name: "Theme"
values: {
"ChartThemeLight": 0,
"ChartThemeBlueCerulean": 1,
"ChartThemeDark": 2,
"ChartThemeBrownSand": 3,
"ChartThemeBlueNcs": 4,
"ChartThemeHighContrast": 5,
"ChartThemeBlueIcy": 6,
"ChartThemeQt": 7
}
}
Enum {
name: "Animation"
values: {
"NoAnimation": 0,
"GridAxisAnimations": 1,
"SeriesAnimations": 2,
"AllAnimations": 3
}
}
Enum {
name: "SeriesType"
values: {
"SeriesTypeLine": 0,
"SeriesTypeArea": 1,
"SeriesTypeBar": 2,
"SeriesTypeStackedBar": 3,
"SeriesTypePercentBar": 4,
"SeriesTypeBoxPlot": 5,
"SeriesTypePie": 6,
"SeriesTypeScatter": 7,
"SeriesTypeSpline": 8,
"SeriesTypeHorizontalBar": 9,
"SeriesTypeHorizontalStackedBar": 10,
"SeriesTypeHorizontalPercentBar": 11
}
}
Property { name: "theme"; type: "Theme" }
Property { name: "animationOptions"; type: "Animation" }
Property { name: "title"; type: "string" }
Property { name: "titleFont"; type: "QFont" }
Property { name: "titleColor"; type: "QColor" }
Property { name: "legend"; type: "QLegend"; isReadonly: true; isPointer: true }
Property { name: "count"; type: "int"; isReadonly: true }
Property { name: "backgroundColor"; type: "QColor" }
Property { name: "dropShadowEnabled"; type: "bool" }
Property { name: "backgroundRoundness"; revision: 3; type: "double" }
Property { name: "topMargin"; type: "double"; isReadonly: true }
Property { name: "bottomMargin"; type: "double"; isReadonly: true }
Property { name: "leftMargin"; type: "double"; isReadonly: true }
Property { name: "rightMargin"; type: "double"; isReadonly: true }
Property {
name: "minimumMargins"
revision: 1
type: "DeclarativeMargins"
isReadonly: true
isPointer: true
}
Property {
name: "margins"
revision: 2
type: "DeclarativeMargins"
isReadonly: true
isPointer: true
}
Property { name: "plotArea"; revision: 1; type: "QRectF"; isReadonly: true }
Property { name: "plotAreaColor"; revision: 3; type: "QColor" }
Property { name: "axes"; revision: 2; type: "QAbstractAxis"; isList: true; isReadonly: true }
Titta Heikkala
Qt Charts project file structure change...
r2712 Property { name: "localizeNumbers"; revision: 4; type: "bool" }
Property { name: "locale"; revision: 4; type: "QLocale" }
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Signal { name: "axisLabelsChanged" }
Signal {
name: "titleColorChanged"
Parameter { name: "color"; type: "QColor" }
}
Signal {
name: "dropShadowEnabledChanged"
Parameter { name: "enabled"; type: "bool" }
}
Signal { name: "marginsChanged"; revision: 2 }
Signal {
name: "plotAreaChanged"
Parameter { name: "plotArea"; type: "QRectF" }
}
Signal {
name: "seriesAdded"
Parameter { name: "series"; type: "QAbstractSeries"; isPointer: true }
}
Signal {
name: "seriesRemoved"
Parameter { name: "series"; type: "QAbstractSeries"; isPointer: true }
}
Signal { name: "plotAreaColorChanged"; revision: 3 }
Signal {
name: "backgroundRoundnessChanged"
revision: 3
Parameter { name: "diameter"; type: "double" }
}
Titta Heikkala
Qt Charts project file structure change...
r2712 Signal { name: "localizeNumbersChanged"; revision: 4 }
Signal { name: "localeChanged"; revision: 4 }
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Method {
name: "series"
type: "QAbstractSeries*"
Parameter { name: "index"; type: "int" }
}
Method {
name: "series"
type: "QAbstractSeries*"
Parameter { name: "seriesName"; type: "string" }
}
Method {
name: "createSeries"
type: "QAbstractSeries*"
Parameter { name: "type"; type: "int" }
Parameter { name: "name"; type: "string" }
Parameter { name: "axisX"; type: "QAbstractAxis"; isPointer: true }
Parameter { name: "axisY"; type: "QAbstractAxis"; isPointer: true }
}
Method {
name: "createSeries"
type: "QAbstractSeries*"
Parameter { name: "type"; type: "int" }
Parameter { name: "name"; type: "string" }
Parameter { name: "axisX"; type: "QAbstractAxis"; isPointer: true }
}
Method {
name: "createSeries"
type: "QAbstractSeries*"
Parameter { name: "type"; type: "int" }
Parameter { name: "name"; type: "string" }
}
Method {
name: "createSeries"
type: "QAbstractSeries*"
Parameter { name: "type"; type: "int" }
}
Method {
name: "removeSeries"
Parameter { name: "series"; type: "QAbstractSeries"; isPointer: true }
}
Method { name: "removeAllSeries" }
Method {
name: "setAxisX"
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
Parameter { name: "series"; type: "QAbstractSeries"; isPointer: true }
}
Method {
name: "setAxisX"
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Method {
name: "setAxisY"
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
Parameter { name: "series"; type: "QAbstractSeries"; isPointer: true }
}
Method {
name: "setAxisY"
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Method { name: "createDefaultAxes" }
Method {
name: "axisX"
type: "QAbstractAxis*"
Parameter { name: "series"; type: "QAbstractSeries"; isPointer: true }
}
Method { name: "axisX"; type: "QAbstractAxis*" }
Method {
name: "axisY"
type: "QAbstractAxis*"
Parameter { name: "series"; type: "QAbstractSeries"; isPointer: true }
}
Method { name: "axisY"; type: "QAbstractAxis*" }
Method {
name: "zoom"
Parameter { name: "factor"; type: "double" }
}
Method {
name: "scrollLeft"
Parameter { name: "pixels"; type: "double" }
}
Method {
name: "scrollRight"
Parameter { name: "pixels"; type: "double" }
}
Method {
name: "scrollUp"
Parameter { name: "pixels"; type: "double" }
}
Method {
name: "scrollDown"
Parameter { name: "pixels"; type: "double" }
}
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::DeclarativeHorizontalBarSeries"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 defaultProperty: "seriesChildren"
Titta Heikkala
Qt Charts project file structure change...
r2712 prototype: "QtCharts::QHorizontalBarSeries"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 exports: [
Titta Heikkala
Qt Charts project file structure change...
r2712 "QtCharts/HorizontalBarSeries 1.1",
"QtCharts/HorizontalBarSeries 1.2",
"QtCharts/HorizontalBarSeries 2.0"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 ]
Titta Heikkala
Qt Charts project file structure change...
r2712 exportMetaObjectRevisions: [1, 2, 2]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "axisX"; revision: 1; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisY"; revision: 1; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisXTop"; revision: 2; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisYRight"; revision: 2; type: "QAbstractAxis"; isPointer: true }
Property { name: "seriesChildren"; type: "QObject"; isList: true; isReadonly: true }
Signal {
name: "axisXChanged"
revision: 1
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisYChanged"
revision: 1
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisXTopChanged"
revision: 2
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisYRightChanged"
revision: 2
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Method {
name: "appendSeriesChildren"
Parameter { name: "list"; type: "QObject"; isList: true; isPointer: true }
Parameter { name: "element"; type: "QObject"; isPointer: true }
}
Method {
name: "at"
type: "DeclarativeBarSet*"
Parameter { name: "index"; type: "int" }
}
Method {
name: "append"
type: "DeclarativeBarSet*"
Parameter { name: "label"; type: "string" }
Parameter { name: "values"; type: "QVariantList" }
}
Method {
name: "insert"
type: "DeclarativeBarSet*"
Parameter { name: "index"; type: "int" }
Parameter { name: "label"; type: "string" }
Parameter { name: "values"; type: "QVariantList" }
}
Method {
name: "remove"
type: "bool"
Parameter { name: "barset"; type: "QBarSet"; isPointer: true }
}
Method { name: "clear" }
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::DeclarativeHorizontalPercentBarSeries"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 defaultProperty: "seriesChildren"
Titta Heikkala
Qt Charts project file structure change...
r2712 prototype: "QtCharts::QHorizontalPercentBarSeries"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 exports: [
Titta Heikkala
Qt Charts project file structure change...
r2712 "QtCharts/HorizontalPercentBarSeries 1.1",
"QtCharts/HorizontalPercentBarSeries 1.2",
"QtCharts/HorizontalPercentBarSeries 2.0"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 ]
Titta Heikkala
Qt Charts project file structure change...
r2712 exportMetaObjectRevisions: [1, 2, 2]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "axisX"; revision: 1; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisY"; revision: 1; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisXTop"; revision: 2; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisYRight"; revision: 2; type: "QAbstractAxis"; isPointer: true }
Property { name: "seriesChildren"; type: "QObject"; isList: true; isReadonly: true }
Signal {
name: "axisXChanged"
revision: 1
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisYChanged"
revision: 1
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisXTopChanged"
revision: 2
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisYRightChanged"
revision: 2
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Method {
name: "appendSeriesChildren"
Parameter { name: "list"; type: "QObject"; isList: true; isPointer: true }
Parameter { name: "element"; type: "QObject"; isPointer: true }
}
Method {
name: "at"
type: "DeclarativeBarSet*"
Parameter { name: "index"; type: "int" }
}
Method {
name: "append"
type: "DeclarativeBarSet*"
Parameter { name: "label"; type: "string" }
Parameter { name: "values"; type: "QVariantList" }
}
Method {
name: "insert"
type: "DeclarativeBarSet*"
Parameter { name: "index"; type: "int" }
Parameter { name: "label"; type: "string" }
Parameter { name: "values"; type: "QVariantList" }
}
Method {
name: "remove"
type: "bool"
Parameter { name: "barset"; type: "QBarSet"; isPointer: true }
}
Method { name: "clear" }
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::DeclarativeHorizontalStackedBarSeries"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 defaultProperty: "seriesChildren"
Titta Heikkala
Qt Charts project file structure change...
r2712 prototype: "QtCharts::QHorizontalStackedBarSeries"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 exports: [
Titta Heikkala
Qt Charts project file structure change...
r2712 "QtCharts/HorizontalStackedBarSeries 1.1",
"QtCharts/HorizontalStackedBarSeries 1.2",
"QtCharts/HorizontalStackedBarSeries 2.0"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 ]
Titta Heikkala
Qt Charts project file structure change...
r2712 exportMetaObjectRevisions: [1, 2, 2]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "axisX"; revision: 1; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisY"; revision: 1; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisXTop"; revision: 2; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisYRight"; revision: 2; type: "QAbstractAxis"; isPointer: true }
Property { name: "seriesChildren"; type: "QObject"; isList: true; isReadonly: true }
Signal {
name: "axisXChanged"
revision: 1
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisYChanged"
revision: 1
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisXTopChanged"
revision: 2
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisYRightChanged"
revision: 2
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Method {
name: "appendSeriesChildren"
Parameter { name: "list"; type: "QObject"; isList: true; isPointer: true }
Parameter { name: "element"; type: "QObject"; isPointer: true }
}
Method {
name: "at"
type: "DeclarativeBarSet*"
Parameter { name: "index"; type: "int" }
}
Method {
name: "append"
type: "DeclarativeBarSet*"
Parameter { name: "label"; type: "string" }
Parameter { name: "values"; type: "QVariantList" }
}
Method {
name: "insert"
type: "DeclarativeBarSet*"
Parameter { name: "index"; type: "int" }
Parameter { name: "label"; type: "string" }
Parameter { name: "values"; type: "QVariantList" }
}
Method {
name: "remove"
type: "bool"
Parameter { name: "barset"; type: "QBarSet"; isPointer: true }
}
Method { name: "clear" }
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::DeclarativeLineSeries"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 defaultProperty: "declarativeChildren"
Titta Heikkala
Qt Charts project file structure change...
r2712 prototype: "QtCharts::QLineSeries"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 exports: [
Titta Heikkala
Qt Charts project file structure change...
r2712 "QtCharts/LineSeries 1.0",
"QtCharts/LineSeries 1.1",
"QtCharts/LineSeries 1.2",
"QtCharts/LineSeries 1.3",
"QtCharts/LineSeries 2.0"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 ]
Titta Heikkala
Qt Charts project file structure change...
r2712 exportMetaObjectRevisions: [0, 1, 2, 3, 3]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "count"; type: "int"; isReadonly: true }
Property { name: "axisX"; revision: 1; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisY"; revision: 1; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisXTop"; revision: 2; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisYRight"; revision: 2; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisAngular"; revision: 3; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisRadial"; revision: 3; type: "QAbstractAxis"; isPointer: true }
Property { name: "width"; revision: 1; type: "double" }
Property { name: "style"; revision: 1; type: "Qt::PenStyle" }
Property { name: "capStyle"; revision: 1; type: "Qt::PenCapStyle" }
Property { name: "declarativeChildren"; type: "QObject"; isList: true; isReadonly: true }
Signal {
name: "countChanged"
Parameter { name: "count"; type: "int" }
}
Signal {
name: "axisXChanged"
revision: 1
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisYChanged"
revision: 1
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisXTopChanged"
revision: 2
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisYRightChanged"
revision: 2
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisAngularChanged"
revision: 3
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisRadialChanged"
revision: 3
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "widthChanged"
revision: 1
Parameter { name: "width"; type: "double" }
}
Signal {
name: "styleChanged"
revision: 1
Parameter { name: "style"; type: "Qt::PenStyle" }
}
Signal {
name: "capStyleChanged"
revision: 1
Parameter { name: "capStyle"; type: "Qt::PenCapStyle" }
}
Method {
name: "appendDeclarativeChildren"
Parameter { name: "list"; type: "QObject"; isList: true; isPointer: true }
Parameter { name: "element"; type: "QObject"; isPointer: true }
}
Method {
name: "handleCountChanged"
Parameter { name: "index"; type: "int" }
}
Method {
name: "append"
Parameter { name: "x"; type: "double" }
Parameter { name: "y"; type: "double" }
}
Method {
name: "replace"
Parameter { name: "oldX"; type: "double" }
Parameter { name: "oldY"; type: "double" }
Parameter { name: "newX"; type: "double" }
Parameter { name: "newY"; type: "double" }
}
Method {
name: "replace"
revision: 3
Parameter { name: "index"; type: "int" }
Parameter { name: "newX"; type: "double" }
Parameter { name: "newY"; type: "double" }
}
Method {
name: "remove"
Parameter { name: "x"; type: "double" }
Parameter { name: "y"; type: "double" }
}
Method {
name: "remove"
revision: 3
Parameter { name: "index"; type: "int" }
}
Method {
name: "insert"
Parameter { name: "index"; type: "int" }
Parameter { name: "x"; type: "double" }
Parameter { name: "y"; type: "double" }
}
Method { name: "clear" }
Method {
name: "at"
type: "QPointF"
Parameter { name: "index"; type: "int" }
}
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::DeclarativeMargins"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 prototype: "QObject"
Titta Heikkala
Qt Charts project file structure change...
r2712 exports: ["QtCharts/Margins 1.1", "QtCharts/Margins 2.0"]
Andy Shaw
Add QVBoxPlotModelMapper and QBoxPlotModelMapper as types for QtQuick 2...
r2705 isCreatable: false
Titta Heikkala
Qt Charts project file structure change...
r2712 exportMetaObjectRevisions: [0, 0]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "top"; type: "int" }
Property { name: "bottom"; type: "int" }
Property { name: "left"; type: "int" }
Property { name: "right"; type: "int" }
Signal {
name: "topChanged"
Parameter { name: "top"; type: "int" }
Parameter { name: "bottom"; type: "int" }
Parameter { name: "left"; type: "int" }
Parameter { name: "right"; type: "int" }
}
Signal {
name: "bottomChanged"
Parameter { name: "top"; type: "int" }
Parameter { name: "bottom"; type: "int" }
Parameter { name: "left"; type: "int" }
Parameter { name: "right"; type: "int" }
}
Signal {
name: "leftChanged"
Parameter { name: "top"; type: "int" }
Parameter { name: "bottom"; type: "int" }
Parameter { name: "left"; type: "int" }
Parameter { name: "right"; type: "int" }
}
Signal {
name: "rightChanged"
Parameter { name: "top"; type: "int" }
Parameter { name: "bottom"; type: "int" }
Parameter { name: "left"; type: "int" }
Parameter { name: "right"; type: "int" }
}
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::DeclarativePercentBarSeries"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 defaultProperty: "seriesChildren"
Titta Heikkala
Qt Charts project file structure change...
r2712 prototype: "QtCharts::QPercentBarSeries"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 exports: [
Titta Heikkala
Qt Charts project file structure change...
r2712 "QtCharts/PercentBarSeries 1.0",
"QtCharts/PercentBarSeries 1.1",
"QtCharts/PercentBarSeries 1.2",
"QtCharts/PercentBarSeries 2.0"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 ]
Titta Heikkala
Qt Charts project file structure change...
r2712 exportMetaObjectRevisions: [0, 1, 2, 2]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "axisX"; revision: 1; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisY"; revision: 1; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisXTop"; revision: 2; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisYRight"; revision: 2; type: "QAbstractAxis"; isPointer: true }
Property { name: "seriesChildren"; type: "QObject"; isList: true; isReadonly: true }
Signal {
name: "axisXChanged"
revision: 1
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisYChanged"
revision: 1
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisXTopChanged"
revision: 2
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisYRightChanged"
revision: 2
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Method {
name: "appendSeriesChildren"
Parameter { name: "list"; type: "QObject"; isList: true; isPointer: true }
Parameter { name: "element"; type: "QObject"; isPointer: true }
}
Method {
name: "at"
type: "DeclarativeBarSet*"
Parameter { name: "index"; type: "int" }
}
Method {
name: "append"
type: "DeclarativeBarSet*"
Parameter { name: "label"; type: "string" }
Parameter { name: "values"; type: "QVariantList" }
}
Method {
name: "insert"
type: "DeclarativeBarSet*"
Parameter { name: "index"; type: "int" }
Parameter { name: "label"; type: "string" }
Parameter { name: "values"; type: "QVariantList" }
}
Method {
name: "remove"
type: "bool"
Parameter { name: "barset"; type: "QBarSet"; isPointer: true }
}
Method { name: "clear" }
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::DeclarativePieSeries"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 defaultProperty: "seriesChildren"
Titta Heikkala
Qt Charts project file structure change...
r2712 prototype: "QtCharts::QPieSeries"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 exports: [
Titta Heikkala
Qt Charts project file structure change...
r2712 "QtCharts/PieSeries 1.0",
"QtCharts/PieSeries 1.1",
"QtCharts/PieSeries 2.0"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 ]
Titta Heikkala
Qt Charts project file structure change...
r2712 exportMetaObjectRevisions: [0, 0, 0]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "seriesChildren"; type: "QObject"; isList: true; isReadonly: true }
Signal {
name: "sliceAdded"
Parameter { name: "slice"; type: "QPieSlice"; isPointer: true }
}
Signal {
name: "sliceRemoved"
Parameter { name: "slice"; type: "QPieSlice"; isPointer: true }
}
Method {
name: "appendSeriesChildren"
Parameter { name: "list"; type: "QObject"; isList: true; isPointer: true }
Parameter { name: "element"; type: "QObject"; isPointer: true }
}
Method {
name: "handleAdded"
Parameter { name: "slices"; type: "QList<QPieSlice*>" }
}
Method {
name: "handleRemoved"
Parameter { name: "slices"; type: "QList<QPieSlice*>" }
}
Method {
name: "at"
type: "QPieSlice*"
Parameter { name: "index"; type: "int" }
}
Method {
name: "find"
type: "QPieSlice*"
Parameter { name: "label"; type: "string" }
}
Method {
name: "append"
Titta Heikkala
Add possibility to set brush image via QML API...
r2681 type: "DeclarativePieSlice*"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Parameter { name: "label"; type: "string" }
Parameter { name: "value"; type: "double" }
}
Method {
name: "remove"
type: "bool"
Parameter { name: "slice"; type: "QPieSlice"; isPointer: true }
}
Method { name: "clear" }
}
Titta Heikkala
Add possibility to set brush image via QML API...
r2681 Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::DeclarativePieSlice"
prototype: "QtCharts::QPieSlice"
exports: ["QtCharts/PieSlice 1.4", "QtCharts/PieSlice 2.0"]
exportMetaObjectRevisions: [0, 0]
Titta Heikkala
Add possibility to set brush image via QML API...
r2681 Property { name: "brushFilename"; type: "string" }
Signal {
name: "brushFilenameChanged"
Parameter { name: "brushFilename"; type: "string" }
}
}
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::DeclarativePolarChart"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 defaultProperty: "data"
Titta Heikkala
Qt Charts project file structure change...
r2712 prototype: "QtCharts::DeclarativeChart"
exports: [
"QtCharts/PolarChartView 1.3",
"QtCharts/PolarChartView 2.0"
]
exportMetaObjectRevisions: [1, 1]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 }
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::DeclarativeScatterSeries"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 defaultProperty: "declarativeChildren"
Titta Heikkala
Qt Charts project file structure change...
r2712 prototype: "QtCharts::QScatterSeries"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 exports: [
Titta Heikkala
Qt Charts project file structure change...
r2712 "QtCharts/ScatterSeries 1.0",
"QtCharts/ScatterSeries 1.1",
"QtCharts/ScatterSeries 1.2",
"QtCharts/ScatterSeries 1.3",
"QtCharts/ScatterSeries 1.4",
"QtCharts/ScatterSeries 2.0"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 ]
Titta Heikkala
Qt Charts project file structure change...
r2712 exportMetaObjectRevisions: [0, 1, 2, 3, 4, 4]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "count"; type: "int"; isReadonly: true }
Property { name: "axisX"; revision: 1; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisY"; revision: 1; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisXTop"; revision: 2; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisYRight"; revision: 2; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisAngular"; revision: 3; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisRadial"; revision: 3; type: "QAbstractAxis"; isPointer: true }
Property { name: "borderWidth"; revision: 1; type: "double" }
Property { name: "declarativeChildren"; type: "QObject"; isList: true; isReadonly: true }
Titta Heikkala
Add possibility to set brush image via QML API...
r2681 Property { name: "brushFilename"; revision: 4; type: "string" }
Property { name: "brush"; revision: 4; type: "QBrush" }
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Signal {
name: "countChanged"
Parameter { name: "count"; type: "int" }
}
Signal {
name: "axisXChanged"
revision: 1
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisYChanged"
revision: 1
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "borderWidthChanged"
revision: 1
Parameter { name: "width"; type: "double" }
}
Signal {
name: "axisXTopChanged"
revision: 2
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisYRightChanged"
revision: 2
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisAngularChanged"
revision: 3
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisRadialChanged"
revision: 3
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Titta Heikkala
Add possibility to set brush image via QML API...
r2681 Signal {
name: "brushFilenameChanged"
revision: 4
Parameter { name: "brushFilename"; type: "string" }
}
Signal { name: "brushChanged"; revision: 4 }
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Method {
name: "appendDeclarativeChildren"
Parameter { name: "list"; type: "QObject"; isList: true; isPointer: true }
Parameter { name: "element"; type: "QObject"; isPointer: true }
}
Method {
name: "handleCountChanged"
Parameter { name: "index"; type: "int" }
}
Method {
name: "append"
Parameter { name: "x"; type: "double" }
Parameter { name: "y"; type: "double" }
}
Method {
name: "replace"
Parameter { name: "oldX"; type: "double" }
Parameter { name: "oldY"; type: "double" }
Parameter { name: "newX"; type: "double" }
Parameter { name: "newY"; type: "double" }
}
Method {
name: "replace"
revision: 3
Parameter { name: "index"; type: "int" }
Parameter { name: "newX"; type: "double" }
Parameter { name: "newY"; type: "double" }
}
Method {
name: "remove"
Parameter { name: "x"; type: "double" }
Parameter { name: "y"; type: "double" }
}
Method {
name: "remove"
revision: 3
Parameter { name: "index"; type: "int" }
}
Method {
name: "insert"
Parameter { name: "index"; type: "int" }
Parameter { name: "x"; type: "double" }
Parameter { name: "y"; type: "double" }
}
Method { name: "clear" }
Method {
name: "at"
type: "QPointF"
Parameter { name: "index"; type: "int" }
}
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::DeclarativeSplineSeries"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 defaultProperty: "declarativeChildren"
Titta Heikkala
Qt Charts project file structure change...
r2712 prototype: "QtCharts::QSplineSeries"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 exports: [
Titta Heikkala
Qt Charts project file structure change...
r2712 "QtCharts/SplineSeries 1.0",
"QtCharts/SplineSeries 1.1",
"QtCharts/SplineSeries 1.2",
"QtCharts/SplineSeries 1.3",
"QtCharts/SplineSeries 2.0"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 ]
Titta Heikkala
Qt Charts project file structure change...
r2712 exportMetaObjectRevisions: [0, 1, 2, 3, 3]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "count"; type: "int"; isReadonly: true }
Property { name: "axisX"; revision: 1; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisY"; revision: 1; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisXTop"; revision: 2; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisYRight"; revision: 2; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisAngular"; revision: 3; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisRadial"; revision: 3; type: "QAbstractAxis"; isPointer: true }
Property { name: "width"; revision: 1; type: "double" }
Property { name: "style"; revision: 1; type: "Qt::PenStyle" }
Property { name: "capStyle"; revision: 1; type: "Qt::PenCapStyle" }
Property { name: "declarativeChildren"; type: "QObject"; isList: true; isReadonly: true }
Signal {
name: "countChanged"
Parameter { name: "count"; type: "int" }
}
Signal {
name: "axisXChanged"
revision: 1
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisYChanged"
revision: 1
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisXTopChanged"
revision: 2
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisYRightChanged"
revision: 2
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisAngularChanged"
revision: 3
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisRadialChanged"
revision: 3
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "widthChanged"
revision: 1
Parameter { name: "width"; type: "double" }
}
Signal {
name: "styleChanged"
revision: 1
Parameter { name: "style"; type: "Qt::PenStyle" }
}
Signal {
name: "capStyleChanged"
revision: 1
Parameter { name: "capStyle"; type: "Qt::PenCapStyle" }
}
Method {
name: "appendDeclarativeChildren"
Parameter { name: "list"; type: "QObject"; isList: true; isPointer: true }
Parameter { name: "element"; type: "QObject"; isPointer: true }
}
Method {
name: "handleCountChanged"
Parameter { name: "index"; type: "int" }
}
Method {
name: "append"
Parameter { name: "x"; type: "double" }
Parameter { name: "y"; type: "double" }
}
Method {
name: "replace"
Parameter { name: "oldX"; type: "double" }
Parameter { name: "oldY"; type: "double" }
Parameter { name: "newX"; type: "double" }
Parameter { name: "newY"; type: "double" }
}
Method {
name: "replace"
revision: 3
Parameter { name: "index"; type: "int" }
Parameter { name: "newX"; type: "double" }
Parameter { name: "newY"; type: "double" }
}
Method {
name: "remove"
Parameter { name: "x"; type: "double" }
Parameter { name: "y"; type: "double" }
}
Method {
name: "remove"
revision: 3
Parameter { name: "index"; type: "int" }
}
Method {
name: "insert"
Parameter { name: "index"; type: "int" }
Parameter { name: "x"; type: "double" }
Parameter { name: "y"; type: "double" }
}
Method { name: "clear" }
Method {
name: "at"
type: "QPointF"
Parameter { name: "index"; type: "int" }
}
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::DeclarativeStackedBarSeries"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 defaultProperty: "seriesChildren"
Titta Heikkala
Qt Charts project file structure change...
r2712 prototype: "QtCharts::QStackedBarSeries"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 exports: [
Titta Heikkala
Qt Charts project file structure change...
r2712 "QtCharts/StackedBarSeries 1.0",
"QtCharts/StackedBarSeries 1.1",
"QtCharts/StackedBarSeries 1.2",
"QtCharts/StackedBarSeries 2.0"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 ]
Titta Heikkala
Qt Charts project file structure change...
r2712 exportMetaObjectRevisions: [0, 1, 2, 2]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "axisX"; revision: 1; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisY"; revision: 1; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisXTop"; revision: 2; type: "QAbstractAxis"; isPointer: true }
Property { name: "axisYRight"; revision: 2; type: "QAbstractAxis"; isPointer: true }
Property { name: "seriesChildren"; type: "QObject"; isList: true; isReadonly: true }
Signal {
name: "axisXChanged"
revision: 1
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisYChanged"
revision: 1
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisXTopChanged"
revision: 2
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Signal {
name: "axisYRightChanged"
revision: 2
Parameter { name: "axis"; type: "QAbstractAxis"; isPointer: true }
}
Method {
name: "appendSeriesChildren"
Parameter { name: "list"; type: "QObject"; isList: true; isPointer: true }
Parameter { name: "element"; type: "QObject"; isPointer: true }
}
Method {
name: "at"
type: "DeclarativeBarSet*"
Parameter { name: "index"; type: "int" }
}
Method {
name: "append"
type: "DeclarativeBarSet*"
Parameter { name: "label"; type: "string" }
Parameter { name: "values"; type: "QVariantList" }
}
Method {
name: "insert"
type: "DeclarativeBarSet*"
Parameter { name: "index"; type: "int" }
Parameter { name: "label"; type: "string" }
Parameter { name: "values"; type: "QVariantList" }
}
Method {
name: "remove"
type: "bool"
Parameter { name: "barset"; type: "QBarSet"; isPointer: true }
}
Method { name: "clear" }
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::DeclarativeXYPoint"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 prototype: "QObject"
Titta Heikkala
Qt Charts project file structure change...
r2712 exports: ["QtCharts/XYPoint 1.0", "QtCharts/XYPoint 2.0"]
exportMetaObjectRevisions: [0, 0]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "x"; type: "double" }
Property { name: "y"; type: "double" }
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::LegendScroller"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 defaultProperty: "children"
Titta Heikkala
Qt Charts project file structure change...
r2712 prototype: "QtCharts::QLegend"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 }
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::QAbstractAxis"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 prototype: "QObject"
Titta Heikkala
Qt Charts project file structure change...
r2712 exports: ["QtCharts/AbstractAxis 1.0", "QtCharts/AbstractAxis 2.0"]
Andy Shaw
Add QVBoxPlotModelMapper and QBoxPlotModelMapper as types for QtQuick 2...
r2705 isCreatable: false
Titta Heikkala
Qt Charts project file structure change...
r2712 exportMetaObjectRevisions: [0, 0]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "visible"; type: "bool" }
Property { name: "lineVisible"; type: "bool" }
Property { name: "linePen"; type: "QPen" }
Property { name: "color"; type: "QColor" }
Property { name: "labelsVisible"; type: "bool" }
Property { name: "labelsPen"; type: "QPen" }
Property { name: "labelsBrush"; type: "QBrush" }
Property { name: "labelsAngle"; type: "int" }
Property { name: "labelsFont"; type: "QFont" }
Property { name: "labelsColor"; type: "QColor" }
Property { name: "gridVisible"; type: "bool" }
Property { name: "gridLinePen"; type: "QPen" }
Property { name: "shadesVisible"; type: "bool" }
Property { name: "shadesColor"; type: "QColor" }
Property { name: "shadesBorderColor"; type: "QColor" }
Property { name: "shadesPen"; type: "QPen" }
Property { name: "shadesBrush"; type: "QBrush" }
Property { name: "titleText"; type: "string" }
Property { name: "titlePen"; type: "QPen" }
Property { name: "titleBrush"; type: "QBrush" }
Property { name: "titleVisible"; type: "bool" }
Property { name: "titleFont"; type: "QFont" }
Property { name: "orientation"; type: "Qt::Orientation"; isReadonly: true }
Property { name: "alignment"; type: "Qt::Alignment"; isReadonly: true }
Signal {
name: "visibleChanged"
Parameter { name: "visible"; type: "bool" }
}
Signal {
name: "linePenChanged"
Parameter { name: "pen"; type: "QPen" }
}
Signal {
name: "lineVisibleChanged"
Parameter { name: "visible"; type: "bool" }
}
Signal {
name: "labelsVisibleChanged"
Parameter { name: "visible"; type: "bool" }
}
Signal {
name: "labelsPenChanged"
Parameter { name: "pen"; type: "QPen" }
}
Signal {
name: "labelsBrushChanged"
Parameter { name: "brush"; type: "QBrush" }
}
Signal {
name: "labelsFontChanged"
Parameter { name: "pen"; type: "QFont" }
}
Signal {
name: "labelsAngleChanged"
Parameter { name: "angle"; type: "int" }
}
Signal {
name: "gridLinePenChanged"
Parameter { name: "pen"; type: "QPen" }
}
Signal {
name: "gridVisibleChanged"
Parameter { name: "visible"; type: "bool" }
}
Signal {
name: "colorChanged"
Parameter { name: "color"; type: "QColor" }
}
Signal {
name: "labelsColorChanged"
Parameter { name: "color"; type: "QColor" }
}
Signal {
name: "titleTextChanged"
Parameter { name: "title"; type: "string" }
}
Signal {
name: "titlePenChanged"
Parameter { name: "pen"; type: "QPen" }
}
Signal {
name: "titleBrushChanged"
Parameter { name: "brush"; type: "QBrush" }
}
Signal {
name: "titleVisibleChanged"
Parameter { name: "visible"; type: "bool" }
}
Signal {
name: "titleFontChanged"
Parameter { name: "font"; type: "QFont" }
}
Signal {
name: "shadesVisibleChanged"
Parameter { name: "visible"; type: "bool" }
}
Signal {
name: "shadesColorChanged"
Parameter { name: "color"; type: "QColor" }
}
Signal {
name: "shadesBorderColorChanged"
Parameter { name: "color"; type: "QColor" }
}
Signal {
name: "shadesPenChanged"
Parameter { name: "pen"; type: "QPen" }
}
Signal {
name: "shadesBrushChanged"
Parameter { name: "brush"; type: "QBrush" }
}
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::QAbstractBarSeries"
prototype: "QtCharts::QAbstractSeries"
exports: [
"QtCharts/AbstractBarSeries 1.0",
"QtCharts/AbstractBarSeries 2.0"
]
Andy Shaw
Add QVBoxPlotModelMapper and QBoxPlotModelMapper as types for QtQuick 2...
r2705 isCreatable: false
Titta Heikkala
Qt Charts project file structure change...
r2712 exportMetaObjectRevisions: [0, 0]
Titta Heikkala
Added possibility to show series value...
r2689 Enum {
name: "LabelsPosition"
values: {
"LabelsCenter": 0,
"LabelsInsideEnd": 1,
"LabelsInsideBase": 2,
"LabelsOutsideEnd": 3
}
}
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "barWidth"; type: "double" }
Property { name: "count"; type: "int"; isReadonly: true }
Property { name: "labelsVisible"; type: "bool" }
Titta Heikkala
Added possibility to show series value...
r2689 Property { name: "labelsFormat"; type: "string" }
Property { name: "labelsPosition"; type: "LabelsPosition" }
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Signal {
name: "clicked"
Parameter { name: "index"; type: "int" }
Parameter { name: "barset"; type: "QBarSet"; isPointer: true }
}
Signal {
name: "hovered"
Parameter { name: "status"; type: "bool" }
Parameter { name: "barset"; type: "QBarSet"; isPointer: true }
}
Signal {
name: "hovered"
Parameter { name: "status"; type: "bool" }
Parameter { name: "index"; type: "int" }
Parameter { name: "barset"; type: "QBarSet"; isPointer: true }
}
Titta Heikkala
Added possibility to show series value...
r2689 Signal {
name: "labelsFormatChanged"
Parameter { name: "format"; type: "string" }
}
Signal {
name: "labelsPositionChanged"
Parameter { name: "position"; type: "QAbstractBarSeries::LabelsPosition" }
}
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Signal {
name: "barsetsAdded"
Parameter { name: "sets"; type: "QList<QBarSet*>" }
}
Signal {
name: "barsetsRemoved"
Parameter { name: "sets"; type: "QList<QBarSet*>" }
}
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::QAbstractSeries"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 prototype: "QObject"
Titta Heikkala
Qt Charts project file structure change...
r2712 exports: [
"QtCharts/AbstractSeries 1.0",
"QtCharts/AbstractSeries 2.0"
]
Andy Shaw
Add QVBoxPlotModelMapper and QBoxPlotModelMapper as types for QtQuick 2...
r2705 isCreatable: false
Titta Heikkala
Qt Charts project file structure change...
r2712 exportMetaObjectRevisions: [0, 0]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Enum {
name: "SeriesType"
values: {
"SeriesTypeLine": 0,
"SeriesTypeArea": 1,
"SeriesTypeBar": 2,
"SeriesTypeStackedBar": 3,
"SeriesTypePercentBar": 4,
"SeriesTypePie": 5,
"SeriesTypeScatter": 6,
"SeriesTypeSpline": 7,
"SeriesTypeHorizontalBar": 8,
"SeriesTypeHorizontalStackedBar": 9,
"SeriesTypeHorizontalPercentBar": 10,
"SeriesTypeBoxPlot": 11
}
}
Property { name: "name"; type: "string" }
Property { name: "visible"; type: "bool" }
Property { name: "opacity"; type: "double" }
Property { name: "type"; type: "SeriesType"; isReadonly: true }
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::QAreaSeries"
prototype: "QtCharts::QAbstractSeries"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "upperSeries"; type: "QLineSeries"; isReadonly: true; isPointer: true }
Property { name: "lowerSeries"; type: "QLineSeries"; isReadonly: true; isPointer: true }
Property { name: "color"; type: "QColor" }
Property { name: "borderColor"; type: "QColor" }
Titta Heikkala
Added possibility to show series value...
r2689 Property { name: "pointLabelsFormat"; type: "string" }
Property { name: "pointLabelsVisible"; type: "bool" }
Property { name: "pointLabelsFont"; type: "QFont" }
Property { name: "pointLabelsColor"; type: "QColor" }
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Signal {
name: "clicked"
Parameter { name: "point"; type: "QPointF" }
}
Signal {
name: "hovered"
Parameter { name: "point"; type: "QPointF" }
Parameter { name: "state"; type: "bool" }
}
Signal { name: "selected" }
Signal {
name: "colorChanged"
Parameter { name: "color"; type: "QColor" }
}
Signal {
name: "borderColorChanged"
Parameter { name: "color"; type: "QColor" }
}
Titta Heikkala
Added possibility to show series value...
r2689 Signal {
name: "pointLabelsFormatChanged"
Parameter { name: "format"; type: "string" }
}
Signal {
name: "pointLabelsVisibilityChanged"
Parameter { name: "visible"; type: "bool" }
}
Signal {
name: "pointLabelsFontChanged"
Parameter { name: "font"; type: "QFont" }
}
Signal {
name: "pointLabelsColorChanged"
Parameter { name: "color"; type: "QColor" }
}
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 }
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::QBarCategoryAxis"
prototype: "QtCharts::QAbstractAxis"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 exports: [
Titta Heikkala
Qt Charts project file structure change...
r2712 "QtCharts/BarCategoriesAxis 1.0",
"QtCharts/BarCategoryAxis 1.1",
"QtCharts/BarCategoryAxis 2.0"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 ]
Titta Heikkala
Qt Charts project file structure change...
r2712 exportMetaObjectRevisions: [0, 0, 0]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "categories"; type: "QStringList" }
Property { name: "min"; type: "string" }
Property { name: "max"; type: "string" }
Property { name: "count"; type: "int"; isReadonly: true }
Signal {
name: "minChanged"
Parameter { name: "min"; type: "string" }
}
Signal {
name: "maxChanged"
Parameter { name: "max"; type: "string" }
}
Signal {
name: "rangeChanged"
Parameter { name: "min"; type: "string" }
Parameter { name: "max"; type: "string" }
}
Titta Heikkala
Add invokable clear() for QML bar category axis...
r2691 Method { name: "clear" }
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 }
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::QBarModelMapper"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 prototype: "QObject"
Titta Heikkala
Qt Charts project file structure change...
r2712 exports: [
"QtCharts/BarModelMapper 1.0",
"QtCharts/BarModelMapper 2.0"
]
Andy Shaw
Add QVBoxPlotModelMapper and QBoxPlotModelMapper as types for QtQuick 2...
r2705 isCreatable: false
Titta Heikkala
Qt Charts project file structure change...
r2712 exportMetaObjectRevisions: [0, 0]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 }
Titta Heikkala
Qt Charts project file structure change...
r2712 Component { name: "QtCharts::QBarSeries"; prototype: "QtCharts::QAbstractBarSeries" }
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::QBarSet"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 prototype: "QObject"
Titta Heikkala
Qt Charts project file structure change...
r2712 exports: ["QtCharts/BarSetBase 1.0", "QtCharts/BarSetBase 2.0"]
Andy Shaw
Add QVBoxPlotModelMapper and QBoxPlotModelMapper as types for QtQuick 2...
r2705 isCreatable: false
Titta Heikkala
Qt Charts project file structure change...
r2712 exportMetaObjectRevisions: [0, 0]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "label"; type: "string" }
Property { name: "pen"; type: "QPen" }
Property { name: "brush"; type: "QBrush" }
Property { name: "labelBrush"; type: "QBrush" }
Property { name: "labelFont"; type: "QFont" }
Property { name: "color"; type: "QColor" }
Property { name: "borderColor"; type: "QColor" }
Property { name: "labelColor"; type: "QColor" }
Signal {
name: "clicked"
Parameter { name: "index"; type: "int" }
}
Signal {
name: "hovered"
Parameter { name: "status"; type: "bool" }
}
Signal {
name: "hovered"
Parameter { name: "status"; type: "bool" }
Parameter { name: "index"; type: "int" }
}
Signal {
name: "colorChanged"
Parameter { name: "color"; type: "QColor" }
}
Signal {
name: "borderColorChanged"
Parameter { name: "color"; type: "QColor" }
}
Signal {
name: "labelColorChanged"
Parameter { name: "color"; type: "QColor" }
}
Signal {
name: "valuesAdded"
Parameter { name: "index"; type: "int" }
Parameter { name: "count"; type: "int" }
}
Signal {
name: "valuesRemoved"
Parameter { name: "index"; type: "int" }
Parameter { name: "count"; type: "int" }
}
Signal {
name: "valueChanged"
Parameter { name: "index"; type: "int" }
}
}
Andy Shaw
Add QVBoxPlotModelMapper and QBoxPlotModelMapper as types for QtQuick 2...
r2705 Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::QBoxPlotModelMapper"
Andy Shaw
Add QVBoxPlotModelMapper and QBoxPlotModelMapper as types for QtQuick 2...
r2705 prototype: "QObject"
Titta Heikkala
Qt Charts project file structure change...
r2712 exports: ["QtCharts/BoxPlotModelMapper 2.0"]
Andy Shaw
Add QVBoxPlotModelMapper and QBoxPlotModelMapper as types for QtQuick 2...
r2705 isCreatable: false
exportMetaObjectRevisions: [0]
}
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::QBoxPlotSeries"
prototype: "QtCharts::QAbstractSeries"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "boxOutlineVisible"; type: "bool" }
Property { name: "boxWidth"; type: "double" }
Property { name: "pen"; type: "QPen" }
Property { name: "brush"; type: "QBrush" }
Titta Heikkala
Add count property for QBoxPlotSeries...
r2682 Property { name: "count"; revision: 1; type: "int"; isReadonly: true }
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Signal {
name: "clicked"
Parameter { name: "boxset"; type: "QBoxSet"; isPointer: true }
}
Signal {
name: "hovered"
Parameter { name: "status"; type: "bool" }
Parameter { name: "boxset"; type: "QBoxSet"; isPointer: true }
}
Signal { name: "boxOutlineVisibilityChanged" }
Signal {
name: "boxsetsAdded"
Parameter { name: "sets"; type: "QList<QBoxSet*>" }
}
Signal {
name: "boxsetsRemoved"
Parameter { name: "sets"; type: "QList<QBoxSet*>" }
}
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::QBoxSet"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 prototype: "QObject"
Property { name: "pen"; type: "QPen" }
Property { name: "brush"; type: "QBrush" }
Signal { name: "clicked" }
Signal {
name: "hovered"
Parameter { name: "status"; type: "bool" }
}
Signal { name: "valuesChanged" }
Signal {
name: "valueChanged"
Parameter { name: "index"; type: "int" }
}
Signal { name: "cleared" }
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::QCategoryAxis"
prototype: "QtCharts::QValueAxis"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "startValue"; type: "double" }
Property { name: "count"; type: "int"; isReadonly: true }
Property { name: "categoriesLabels"; type: "QStringList"; isReadonly: true }
Signal { name: "categoriesChanged" }
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::QDateTimeAxis"
prototype: "QtCharts::QAbstractAxis"
exports: ["QtCharts/DateTimeAxis 1.1", "QtCharts/DateTimeAxis 2.0"]
exportMetaObjectRevisions: [0, 0]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "tickCount"; type: "int" }
Property { name: "min"; type: "QDateTime" }
Property { name: "max"; type: "QDateTime" }
Property { name: "format"; type: "string" }
Signal {
name: "minChanged"
Parameter { name: "min"; type: "QDateTime" }
}
Signal {
name: "maxChanged"
Parameter { name: "max"; type: "QDateTime" }
}
Signal {
name: "rangeChanged"
Parameter { name: "min"; type: "QDateTime" }
Parameter { name: "max"; type: "QDateTime" }
}
Signal {
name: "formatChanged"
Parameter { name: "format"; type: "string" }
}
Signal {
name: "tickCountChanged"
Parameter { name: "tick"; type: "int" }
}
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::QHBarModelMapper"
prototype: "QtCharts::QBarModelMapper"
exports: [
"QtCharts/HBarModelMapper 1.0",
"QtCharts/HBarModelMapper 2.0"
]
exportMetaObjectRevisions: [0, 0]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "series"; type: "QAbstractBarSeries"; isPointer: true }
Property { name: "model"; type: "QAbstractItemModel"; isPointer: true }
Property { name: "firstBarSetRow"; type: "int" }
Property { name: "lastBarSetRow"; type: "int" }
Property { name: "firstColumn"; type: "int" }
Property { name: "columnCount"; type: "int" }
Signal { name: "seriesReplaced" }
Signal { name: "modelReplaced" }
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::QHPieModelMapper"
prototype: "QtCharts::QPieModelMapper"
exports: [
"QtCharts/HPieModelMapper 1.0",
"QtCharts/HPieModelMapper 2.0"
]
exportMetaObjectRevisions: [0, 0]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "series"; type: "QPieSeries"; isPointer: true }
Property { name: "model"; type: "QAbstractItemModel"; isPointer: true }
Property { name: "valuesRow"; type: "int" }
Property { name: "labelsRow"; type: "int" }
Property { name: "firstColumn"; type: "int" }
Property { name: "columnCount"; type: "int" }
Signal { name: "seriesReplaced" }
Signal { name: "modelReplaced" }
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::QHXYModelMapper"
prototype: "QtCharts::QXYModelMapper"
exports: [
"QtCharts/HXYModelMapper 1.0",
"QtCharts/HXYModelMapper 2.0"
]
exportMetaObjectRevisions: [0, 0]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "series"; type: "QXYSeries"; isPointer: true }
Property { name: "model"; type: "QAbstractItemModel"; isPointer: true }
Property { name: "xRow"; type: "int" }
Property { name: "yRow"; type: "int" }
Property { name: "firstColumn"; type: "int" }
Property { name: "columnCount"; type: "int" }
Signal { name: "seriesReplaced" }
Signal { name: "modelReplaced" }
}
Titta Heikkala
Qt Charts project file structure change...
r2712 Component { name: "QtCharts::QHorizontalBarSeries"; prototype: "QtCharts::QAbstractBarSeries" }
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::QHorizontalPercentBarSeries"
prototype: "QtCharts::QAbstractBarSeries"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 }
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::QHorizontalStackedBarSeries"
prototype: "QtCharts::QAbstractBarSeries"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 }
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::QLegend"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 defaultProperty: "children"
prototype: "QGraphicsWidget"
Titta Heikkala
Qt Charts project file structure change...
r2712 exports: ["QtCharts/Legend 1.0", "QtCharts/Legend 2.0"]
Andy Shaw
Add QVBoxPlotModelMapper and QBoxPlotModelMapper as types for QtQuick 2...
r2705 isCreatable: false
Titta Heikkala
Qt Charts project file structure change...
r2712 exportMetaObjectRevisions: [0, 0]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "alignment"; type: "Qt::Alignment" }
Property { name: "backgroundVisible"; type: "bool" }
Property { name: "color"; type: "QColor" }
Property { name: "borderColor"; type: "QColor" }
Property { name: "font"; type: "QFont" }
Property { name: "labelColor"; type: "QColor" }
Titta Heikkala
Add possibility to set markers in legend in reverse order...
r2676 Property { name: "reverseMarkers"; type: "bool" }
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Signal {
name: "backgroundVisibleChanged"
Parameter { name: "visible"; type: "bool" }
}
Signal {
name: "colorChanged"
Parameter { name: "color"; type: "QColor" }
}
Signal {
name: "borderColorChanged"
Parameter { name: "color"; type: "QColor" }
}
Signal {
name: "fontChanged"
Parameter { name: "font"; type: "QFont" }
}
Signal {
name: "labelColorChanged"
Parameter { name: "color"; type: "QColor" }
}
Titta Heikkala
Add possibility to set markers in legend in reverse order...
r2676 Signal {
name: "reverseMarkersChanged"
Parameter { name: "reverseMarkers"; type: "bool" }
}
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 }
Titta Heikkala
Qt Charts project file structure change...
r2712 Component { name: "QtCharts::QLineSeries"; prototype: "QtCharts::QXYSeries" }
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::QLogValueAxis"
prototype: "QtCharts::QAbstractAxis"
exports: ["QtCharts/LogValueAxis 1.3", "QtCharts/LogValueAxis 2.0"]
exportMetaObjectRevisions: [0, 1]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "min"; type: "double" }
Property { name: "max"; type: "double" }
Property { name: "labelFormat"; type: "string" }
Property { name: "base"; type: "double" }
Signal {
name: "minChanged"
Parameter { name: "min"; type: "double" }
}
Signal {
name: "maxChanged"
Parameter { name: "max"; type: "double" }
}
Signal {
name: "rangeChanged"
Parameter { name: "min"; type: "double" }
Parameter { name: "max"; type: "double" }
}
Signal {
name: "labelFormatChanged"
Parameter { name: "format"; type: "string" }
}
Signal {
name: "baseChanged"
Parameter { name: "base"; type: "double" }
}
}
Titta Heikkala
Qt Charts project file structure change...
r2712 Component { name: "QtCharts::QPercentBarSeries"; prototype: "QtCharts::QAbstractBarSeries" }
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::QPieModelMapper"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 prototype: "QObject"
Titta Heikkala
Qt Charts project file structure change...
r2712 exports: [
"QtCharts/PieModelMapper 1.0",
"QtCharts/PieModelMapper 2.0"
]
Andy Shaw
Add QVBoxPlotModelMapper and QBoxPlotModelMapper as types for QtQuick 2...
r2705 isCreatable: false
Titta Heikkala
Qt Charts project file structure change...
r2712 exportMetaObjectRevisions: [0, 0]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 }
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::QPieSeries"
prototype: "QtCharts::QAbstractSeries"
exports: ["QtCharts/QPieSeries 1.0", "QtCharts/QPieSeries 2.0"]
Andy Shaw
Add QVBoxPlotModelMapper and QBoxPlotModelMapper as types for QtQuick 2...
r2705 isCreatable: false
Titta Heikkala
Qt Charts project file structure change...
r2712 exportMetaObjectRevisions: [0, 0]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "horizontalPosition"; type: "double" }
Property { name: "verticalPosition"; type: "double" }
Property { name: "size"; type: "double" }
Property { name: "startAngle"; type: "double" }
Property { name: "endAngle"; type: "double" }
Property { name: "count"; type: "int"; isReadonly: true }
Property { name: "sum"; type: "double"; isReadonly: true }
Property { name: "holeSize"; type: "double" }
Signal {
name: "added"
Parameter { name: "slices"; type: "QList<QPieSlice*>" }
}
Signal {
name: "removed"
Parameter { name: "slices"; type: "QList<QPieSlice*>" }
}
Signal {
name: "clicked"
Parameter { name: "slice"; type: "QPieSlice"; isPointer: true }
}
Signal {
name: "hovered"
Parameter { name: "slice"; type: "QPieSlice"; isPointer: true }
Parameter { name: "state"; type: "bool" }
}
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::QPieSlice"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 prototype: "QObject"
Titta Heikkala
Qt Charts project file structure change...
r2712 exports: ["QtCharts/PieSlice 1.0", "QtCharts/PieSlice 2.0"]
exportMetaObjectRevisions: [0, 0]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Enum {
name: "LabelPosition"
values: {
"LabelOutside": 0,
"LabelInsideHorizontal": 1,
"LabelInsideTangential": 2,
"LabelInsideNormal": 3
}
}
Property { name: "label"; type: "string" }
Property { name: "value"; type: "double" }
Property { name: "labelVisible"; type: "bool" }
Property { name: "labelPosition"; type: "LabelPosition" }
Property { name: "exploded"; type: "bool" }
Property { name: "pen"; type: "QPen" }
Property { name: "borderColor"; type: "QColor" }
Property { name: "borderWidth"; type: "int" }
Property { name: "brush"; type: "QBrush" }
Property { name: "color"; type: "QColor" }
Property { name: "labelBrush"; type: "QBrush" }
Property { name: "labelColor"; type: "QColor" }
Property { name: "labelFont"; type: "QFont" }
Property { name: "labelArmLengthFactor"; type: "double" }
Property { name: "explodeDistanceFactor"; type: "double" }
Property { name: "percentage"; type: "double"; isReadonly: true }
Property { name: "startAngle"; type: "double"; isReadonly: true }
Property { name: "angleSpan"; type: "double"; isReadonly: true }
Signal { name: "clicked" }
Signal {
name: "hovered"
Parameter { name: "state"; type: "bool" }
}
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::QScatterSeries"
prototype: "QtCharts::QXYSeries"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Enum {
name: "MarkerShape"
values: {
"MarkerShapeCircle": 0,
"MarkerShapeRectangle": 1
}
}
Property { name: "color"; type: "QColor" }
Property { name: "borderColor"; type: "QColor" }
Property { name: "markerShape"; type: "MarkerShape" }
Property { name: "markerSize"; type: "double" }
Titta Heikkala
Add possibility to set brush image via QML API...
r2681 Property { name: "brush"; type: "QBrush" }
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Signal {
name: "colorChanged"
Parameter { name: "color"; type: "QColor" }
}
Signal {
name: "borderColorChanged"
Parameter { name: "color"; type: "QColor" }
}
}
Titta Heikkala
Qt Charts project file structure change...
r2712 Component { name: "QtCharts::QSplineSeries"; prototype: "QtCharts::QLineSeries" }
Component { name: "QtCharts::QStackedBarSeries"; prototype: "QtCharts::QAbstractBarSeries" }
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::QVBarModelMapper"
prototype: "QtCharts::QBarModelMapper"
exports: [
"QtCharts/VBarModelMapper 1.0",
"QtCharts/VBarModelMapper 2.0"
]
exportMetaObjectRevisions: [0, 0]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "series"; type: "QAbstractBarSeries"; isPointer: true }
Property { name: "model"; type: "QAbstractItemModel"; isPointer: true }
Property { name: "firstBarSetColumn"; type: "int" }
Property { name: "lastBarSetColumn"; type: "int" }
Property { name: "firstRow"; type: "int" }
Property { name: "rowCount"; type: "int" }
Signal { name: "seriesReplaced" }
Signal { name: "modelReplaced" }
}
Andy Shaw
Add QVBoxPlotModelMapper and QBoxPlotModelMapper as types for QtQuick 2...
r2705 Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::QVBoxPlotModelMapper"
prototype: "QtCharts::QBoxPlotModelMapper"
exports: ["QtCharts/VBoxPlotModelMapper 2.0"]
Andy Shaw
Add QVBoxPlotModelMapper and QBoxPlotModelMapper as types for QtQuick 2...
r2705 exportMetaObjectRevisions: [0]
Property { name: "series"; type: "QBoxPlotSeries"; isPointer: true }
Property { name: "model"; type: "QAbstractItemModel"; isPointer: true }
Property { name: "firstBoxSetColumn"; type: "int" }
Property { name: "lastBoxSetColumn"; type: "int" }
Property { name: "firstRow"; type: "int" }
Property { name: "rowCount"; type: "int" }
Signal { name: "seriesReplaced" }
Signal { name: "modelReplaced" }
}
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::QVPieModelMapper"
prototype: "QtCharts::QPieModelMapper"
exports: [
"QtCharts/VPieModelMapper 1.0",
"QtCharts/VPieModelMapper 2.0"
]
exportMetaObjectRevisions: [0, 0]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "series"; type: "QPieSeries"; isPointer: true }
Property { name: "model"; type: "QAbstractItemModel"; isPointer: true }
Property { name: "valuesColumn"; type: "int" }
Property { name: "labelsColumn"; type: "int" }
Property { name: "firstRow"; type: "int" }
Property { name: "rowCount"; type: "int" }
Signal { name: "seriesReplaced" }
Signal { name: "modelReplaced" }
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::QVXYModelMapper"
prototype: "QtCharts::QXYModelMapper"
exports: [
"QtCharts/VXYModelMapper 1.0",
"QtCharts/VXYModelMapper 2.0"
]
exportMetaObjectRevisions: [0, 0]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "series"; type: "QXYSeries"; isPointer: true }
Property { name: "model"; type: "QAbstractItemModel"; isPointer: true }
Property { name: "xColumn"; type: "int" }
Property { name: "yColumn"; type: "int" }
Property { name: "firstRow"; type: "int" }
Property { name: "rowCount"; type: "int" }
Signal { name: "seriesReplaced" }
Signal { name: "modelReplaced" }
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::QValueAxis"
prototype: "QtCharts::QAbstractAxis"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 exports: [
Titta Heikkala
Qt Charts project file structure change...
r2712 "QtCharts/ValueAxis 1.1",
"QtCharts/ValueAxis 2.0",
"QtCharts/ValuesAxis 1.0"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 ]
Titta Heikkala
Qt Charts project file structure change...
r2712 exportMetaObjectRevisions: [0, 0, 0]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "tickCount"; type: "int" }
Property { name: "niceNumbersEnabled"; type: "bool" }
Property { name: "min"; type: "double" }
Property { name: "max"; type: "double" }
Property { name: "labelFormat"; type: "string" }
Signal {
name: "minChanged"
Parameter { name: "min"; type: "double" }
}
Signal {
name: "maxChanged"
Parameter { name: "max"; type: "double" }
}
Signal {
name: "rangeChanged"
Parameter { name: "min"; type: "double" }
Parameter { name: "max"; type: "double" }
}
Signal {
name: "tickCountChanged"
Parameter { name: "tickCount"; type: "int" }
}
Signal {
name: "labelFormatChanged"
Parameter { name: "format"; type: "string" }
}
Method { name: "applyNiceNumbers" }
}
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::QXYModelMapper"
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 prototype: "QObject"
Titta Heikkala
Qt Charts project file structure change...
r2712 exports: ["QtCharts/XYModelMapper 1.0", "QtCharts/XYModelMapper 2.0"]
Andy Shaw
Add QVBoxPlotModelMapper and QBoxPlotModelMapper as types for QtQuick 2...
r2705 isCreatable: false
Titta Heikkala
Qt Charts project file structure change...
r2712 exportMetaObjectRevisions: [0, 0]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 }
Component {
Titta Heikkala
Qt Charts project file structure change...
r2712 name: "QtCharts::QXYSeries"
prototype: "QtCharts::QAbstractSeries"
exports: ["QtCharts/XYSeries 1.0", "QtCharts/XYSeries 2.0"]
Andy Shaw
Add QVBoxPlotModelMapper and QBoxPlotModelMapper as types for QtQuick 2...
r2705 isCreatable: false
Titta Heikkala
Qt Charts project file structure change...
r2712 exportMetaObjectRevisions: [0, 0]
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Property { name: "pointsVisible"; type: "bool" }
Property { name: "color"; type: "QColor" }
Titta Heikkala
Added possibility to show series value...
r2689 Property { name: "pointLabelsFormat"; type: "string" }
Property { name: "pointLabelsVisible"; type: "bool" }
Property { name: "pointLabelsFont"; type: "QFont" }
Property { name: "pointLabelsColor"; type: "QColor" }
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 Signal {
name: "clicked"
Parameter { name: "point"; type: "QPointF" }
}
Signal {
name: "hovered"
Parameter { name: "point"; type: "QPointF" }
Parameter { name: "state"; type: "bool" }
}
Signal {
name: "pointReplaced"
Parameter { name: "index"; type: "int" }
}
Signal {
name: "pointRemoved"
Parameter { name: "index"; type: "int" }
}
Signal {
name: "pointAdded"
Parameter { name: "index"; type: "int" }
}
Signal {
name: "colorChanged"
Parameter { name: "color"; type: "QColor" }
}
Signal { name: "pointsReplaced" }
Titta Heikkala
Added possibility to show series value...
r2689 Signal {
name: "pointLabelsFormatChanged"
Parameter { name: "format"; type: "string" }
}
Signal {
name: "pointLabelsVisibilityChanged"
Parameter { name: "visible"; type: "bool" }
}
Signal {
name: "pointLabelsFontChanged"
Parameter { name: "font"; type: "QFont" }
}
Signal {
name: "pointLabelsColorChanged"
Parameter { name: "color"; type: "QColor" }
}
Andy Shaw
Install the plugins.qmltypes file as it is not possible to generate...
r2672 }
}