##// END OF EJS Templates
Add QML designer plugin...
Add QML designer plugin Added QML designer plugin for Charts. It's possible now to add all possible series in ChartView and PolarChartView type. The properties of ChartView and PolarChartView can be set via the QML designer. The properties of the series are not editable via the QML designer. Change-Id: I51cd6bf5bd33cd8d0f7b7f2fb992e7963e344dae Task-number: QTRD-3356 Reviewed-by: Tomi Korpipää <tomi.korpipaa@digia.com> Reviewed-by: Miikka Heikkinen <miikka.heikkinen@theqtcompany.com>

File last commit:

r2738:6c4e7f2cd60f
r2738:6c4e7f2cd60f
Show More
qtcharts.metainfo
227 lines | 6.5 KiB | text/plain | TextLexer
Titta Heikkala
Add QML designer plugin...
r2738 MetaInfo {
Type {
name: "QtCharts.AreaSeries"
icon: "images/areaseries-chart-icon16.png"
ItemLibraryEntry {
name: "Area"
category: "Qt Charts - ChartView"
libraryIcon: "images/areaseries-chart-icon.png"
version: "2.0"
requiredImport: "QtCharts"
QmlSource { source: "default/AreaSeries.qml" }
}
}
Type {
name: "QtCharts.BarSeries"
icon: "images/barseries-icon16.png"
ItemLibraryEntry {
name: "Bar"
category: "Qt Charts - ChartView"
libraryIcon: "images/barseries-icon.png"
version: "2.0"
requiredImport: "QtCharts"
QmlSource { source: "default/BarSeries.qml" }
}
}
Type {
name: "QtCharts.BoxPlotSeries"
icon: "images/boxplotseries-chart-icon16.png"
ItemLibraryEntry {
name: "BoxPlot"
category: "Qt Charts - ChartView"
libraryIcon: "images/boxplotseries-chart-icon.png"
version: "2.0"
requiredImport: "QtCharts"
QmlSource { source: "default/BoxPlotSeries.qml" }
}
}
Type {
name: "QtCharts.HorizontalBarSeries"
icon: "images/horizontalbarseries-icon16.png"
ItemLibraryEntry {
name: "H.Bar"
category: "Qt Charts - ChartView"
libraryIcon: "images/horizontalbarseries-icon.png"
version: "2.0"
requiredImport: "QtCharts"
QmlSource { source: "default/HorizontalBarSeries.qml" }
}
}
Type {
name: "QtCharts.HorizontalPercentBarSeries"
icon: "images/horizontalpercentbarseries-icon16.png"
ItemLibraryEntry {
name: "H.PercentBar"
category: "Qt Charts - ChartView"
libraryIcon: "images/horizontalpercentbarseries-icon.png"
version: "2.0"
requiredImport: "QtCharts"
QmlSource { source: "default/HorizontalPercentBarSeries.qml" }
}
}
Type {
name: "QtCharts.HorizontalStackedBarSeries"
icon: "images/horizontalstackedbarseries-icon16.png"
ItemLibraryEntry {
name: "H.StackedBar"
category: "Qt Charts - ChartView"
libraryIcon: "images/horizontalstackedbarseries-icon.png"
version: "2.0"
requiredImport: "QtCharts"
QmlSource { source: "default/HorizontalStackedBarSeries.qml" }
}
}
Type {
name: "QtCharts.LineSeries"
icon: "images/lineseries-chart-icon16.png"
ItemLibraryEntry {
name: "Line"
category: "Qt Charts - ChartView"
libraryIcon: "images/lineseries-chart-icon.png"
version: "2.0"
requiredImport: "QtCharts"
QmlSource { source: "default/LineSeries.qml" }
}
}
Type {
name: "QtCharts.PercentBarSeries"
icon: "images/percentbarseries-icon16.png"
ItemLibraryEntry {
name: "Percent"
category: "Qt Charts - ChartView"
libraryIcon: "images/percentbarseries-icon.png"
version: "2.0"
requiredImport: "QtCharts"
QmlSource { source: "default/PercentBarSeries.qml" }
}
}
Type {
name: "QtCharts.PieSeries"
icon: "images/pieseries-chart-icon16.png"
ItemLibraryEntry {
name: "Pie"
category: "Qt Charts - ChartView"
libraryIcon: "images/pieseries-chart-icon.png"
version: "2.0"
requiredImport: "QtCharts"
QmlSource { source: "default/PieSeries.qml" }
}
}
Type {
name: "QtCharts.ScatterSeries"
icon: "images/scatterseries-chart-icon16.png"
ItemLibraryEntry {
name: "Scatter"
category: "Qt Charts - ChartView"
libraryIcon: "images/scatterseries-chart-icon.png"
version: "2.0"
requiredImport: "QtCharts"
QmlSource { source: "default/ScatterSeries.qml" }
}
}
Type {
name: "QtCharts.SplineSeries"
icon: "images/splineseries-chart-icon16.png"
ItemLibraryEntry {
name: "Spline"
category: "Qt Charts - ChartView"
libraryIcon: "images/splineseries-chart-icon.png"
version: "2.0"
requiredImport: "QtCharts"
QmlSource { source: "default/SplineSeries.qml" }
}
}
Type {
name: "QtCharts.StackedBarSeries"
icon: "images/stackedbarseries-icon16.png"
ItemLibraryEntry {
name: "StackedBar"
category: "Qt Charts - ChartView"
libraryIcon: "images/stackedbarseries-icon.png"
version: "2.0"
requiredImport: "QtCharts"
QmlSource { source: "default/StackedBarSeries.qml" }
}
}
Type {
name: "QtCharts.AreaSeries"
icon: "images/areaseries-polar-icon16.png"
ItemLibraryEntry {
name: "Area"
category: "Qt Charts - PolarChartView"
libraryIcon: "images/areaseries-polar-icon.png"
version: "2.0"
requiredImport: "QtCharts"
QmlSource { source: "default/PolarAreaSeries.qml" }
}
}
Type {
name: "QtCharts.LineSeries"
icon: "images/lineseries-polar-icon16.png"
ItemLibraryEntry {
name: "Line"
category: "Qt Charts - PolarChartView"
libraryIcon: "images/lineseries-polar-icon.png"
version: "2.0"
requiredImport: "QtCharts"
QmlSource { source: "default/PolarLineSeries.qml" }
}
}
Type {
name: "QtCharts.ScatterSeries"
icon: "images/scatterseries-polar-icon16.png"
ItemLibraryEntry {
name: "Scatter"
category: "Qt Charts - PolarChartView"
libraryIcon: "images/scatterseries-polar-icon.png"
version: "2.0"
requiredImport: "QtCharts"
QmlSource { source: "default/PolarScatterSeries.qml" }
}
}
Type {
name: "QtCharts.SplineSeries"
icon: "images/splineseries-polar-icon16.png"
ItemLibraryEntry {
name: "Spline"
category: "Qt Charts - PolarChartView"
libraryIcon: "images/splineseries-polar-icon.png"
version: "2.0"
requiredImport: "QtCharts"
QmlSource { source: "default/PolarSplineSeries.qml" }
}
}
}