summaryrefslogtreecommitdiffstats
path: root/tests/qmlchartproperties
diff options
context:
space:
mode:
authorTero Ahola <tero.ahola@digia.com>2012-08-27 12:48:25 +0300
committerTero Ahola <tero.ahola@digia.com>2012-08-27 13:01:23 +0300
commit58a3a87ea08bab18f524cf109c174c881250f72f (patch)
treebe7bdac1ca1da952659243005e8c2dd7a85f1bdb /tests/qmlchartproperties
parent0b0a73ba4fad5a3e17b46690c20375d1ee1b224d (diff)
QML API versioning to QtCommercial.Chart 1.1
Diffstat (limited to 'tests/qmlchartproperties')
-rw-r--r--tests/qmlchartproperties/qml/qmlchartproperties/AreaChart.qml2
-rw-r--r--tests/qmlchartproperties/qml/qmlchartproperties/BarChart.qml4
-rw-r--r--tests/qmlchartproperties/qml/qmlchartproperties/Chart.qml42
-rw-r--r--tests/qmlchartproperties/qml/qmlchartproperties/LineChart.qml2
-rw-r--r--tests/qmlchartproperties/qml/qmlchartproperties/PercentBarChart.qml4
-rw-r--r--tests/qmlchartproperties/qml/qmlchartproperties/PieChart.qml2
-rw-r--r--tests/qmlchartproperties/qml/qmlchartproperties/ScatterChart.qml2
-rw-r--r--tests/qmlchartproperties/qml/qmlchartproperties/SplineChart.qml2
-rw-r--r--tests/qmlchartproperties/qml/qmlchartproperties/StackedBarChart.qml4
9 files changed, 32 insertions, 32 deletions
diff --git a/tests/qmlchartproperties/qml/qmlchartproperties/AreaChart.qml b/tests/qmlchartproperties/qml/qmlchartproperties/AreaChart.qml
index 2c2ee878..dfdc9a98 100644
--- a/tests/qmlchartproperties/qml/qmlchartproperties/AreaChart.qml
+++ b/tests/qmlchartproperties/qml/qmlchartproperties/AreaChart.qml
@@ -19,7 +19,7 @@
****************************************************************************/
import QtQuick 1.0
-import QtCommercial.Chart 1.0
+import QtCommercial.Chart 1.1
ChartView {
title: "area series"
diff --git a/tests/qmlchartproperties/qml/qmlchartproperties/BarChart.qml b/tests/qmlchartproperties/qml/qmlchartproperties/BarChart.qml
index ad1243b4..ce6c14e7 100644
--- a/tests/qmlchartproperties/qml/qmlchartproperties/BarChart.qml
+++ b/tests/qmlchartproperties/qml/qmlchartproperties/BarChart.qml
@@ -19,7 +19,7 @@
****************************************************************************/
import QtQuick 1.0
-import QtCommercial.Chart 1.0
+import QtCommercial.Chart 1.1
ChartView {
title: "Bar series"
@@ -34,7 +34,7 @@ ChartView {
BarSeries {
id: mySeries
name: "bar"
- axisX: BarCategoriesAxis { categories: ["2007", "2008", "2009", "2010", "2011", "2012" ] }
+ axisX: BarCategoryAxis { categories: ["2007", "2008", "2009", "2010", "2011", "2012" ] }
BarSet { label: "Bob"; values: [2, 2, 3, 4, 5, 6]
onClicked: console.log("barset.onClicked: " + index);
onHovered: console.log("barset.onHovered: " + status);
diff --git a/tests/qmlchartproperties/qml/qmlchartproperties/Chart.qml b/tests/qmlchartproperties/qml/qmlchartproperties/Chart.qml
index 820e05c9..1172d7cb 100644
--- a/tests/qmlchartproperties/qml/qmlchartproperties/Chart.qml
+++ b/tests/qmlchartproperties/qml/qmlchartproperties/Chart.qml
@@ -19,7 +19,7 @@
****************************************************************************/
import QtQuick 1.0
-import QtCommercial.Chart 1.0
+import QtCommercial.Chart 1.1
ChartView {
id: chartView
@@ -67,29 +67,29 @@ ChartView {
ValueAxis{
- onColorChanged: console.log("axisX.onColorChanged: " + color);
- onLabelsVisibleChanged: console.log("axisX.onLabelsVisibleChanged: " + visible);
- onLabelsColorChanged: console.log("axisX.onLabelsColorChanged: " + color);
- onVisibleChanged: console.log("axisX.onVisibleChanged: " + visible);
- onGridVisibleChanged: console.log("axisX.onGridVisibleChanged: " + visible);
- onShadesVisibleChanged: console.log("axisX.onShadesVisibleChanged: " + visible);
- onShadesColorChanged: console.log("axisX.onShadesColorChanged: " + color);
- onShadesBorderColorChanged: console.log("axisX.onShadesBorderColorChanged: " + color);
- onMinChanged: console.log("axisX.onMinChanged: " + min);
- onMaxChanged: console.log("axisX.onMaxChanged: " + max);
+ onColorChanged: console.log("axisX.onColorChanged: " + color);
+ onLabelsVisibleChanged: console.log("axisX.onLabelsVisibleChanged: " + visible);
+ onLabelsColorChanged: console.log("axisX.onLabelsColorChanged: " + color);
+ onVisibleChanged: console.log("axisX.onVisibleChanged: " + visible);
+ onGridVisibleChanged: console.log("axisX.onGridVisibleChanged: " + visible);
+ onShadesVisibleChanged: console.log("axisX.onShadesVisibleChanged: " + visible);
+ onShadesColorChanged: console.log("axisX.onShadesColorChanged: " + color);
+ onShadesBorderColorChanged: console.log("axisX.onShadesBorderColorChanged: " + color);
+ onMinChanged: console.log("axisX.onMinChanged: " + min);
+ onMaxChanged: console.log("axisX.onMaxChanged: " + max);
}
ValueAxis{
- onColorChanged: console.log("axisY.onColorChanged: " + color);
- onLabelsVisibleChanged: console.log("axisY.onLabelsVisibleChanged: " + visible);
- onLabelsColorChanged: console.log("axisY.onLabelsColorChanged: " + color);
- onVisibleChanged: console.log("axisY.onVisibleChanged: " + visible);
- onGridVisibleChanged: console.log("axisY.onGridVisibleChanged: " + visible);
- onShadesVisibleChanged: console.log("axisY.onShadesVisibleChanged: " + visible);
- onShadesColorChanged: console.log("axisY.onShadesColorChanged: " + color);
- onShadesBorderColorChanged: console.log("axisY.onShadesBorderColorChanged: " + color);
- onMinChanged: console.log("axisY.onMinChanged: " + min);
- onMaxChanged: console.log("axisY.onMaxChanged: " + max);
+ onColorChanged: console.log("axisY.onColorChanged: " + color);
+ onLabelsVisibleChanged: console.log("axisY.onLabelsVisibleChanged: " + visible);
+ onLabelsColorChanged: console.log("axisY.onLabelsColorChanged: " + color);
+ onVisibleChanged: console.log("axisY.onVisibleChanged: " + visible);
+ onGridVisibleChanged: console.log("axisY.onGridVisibleChanged: " + visible);
+ onShadesVisibleChanged: console.log("axisY.onShadesVisibleChanged: " + visible);
+ onShadesColorChanged: console.log("axisY.onShadesColorChanged: " + color);
+ onShadesBorderColorChanged: console.log("axisY.onShadesBorderColorChanged: " + color);
+ onMinChanged: console.log("axisY.onMinChanged: " + min);
+ onMaxChanged: console.log("axisY.onMaxChanged: " + max);
}
Rectangle {
diff --git a/tests/qmlchartproperties/qml/qmlchartproperties/LineChart.qml b/tests/qmlchartproperties/qml/qmlchartproperties/LineChart.qml
index 279f443e..ce1628c5 100644
--- a/tests/qmlchartproperties/qml/qmlchartproperties/LineChart.qml
+++ b/tests/qmlchartproperties/qml/qmlchartproperties/LineChart.qml
@@ -19,7 +19,7 @@
****************************************************************************/
import QtQuick 1.0
-import QtCommercial.Chart 1.0
+import QtCommercial.Chart 1.1
ChartView {
property variant series: lineSeries
diff --git a/tests/qmlchartproperties/qml/qmlchartproperties/PercentBarChart.qml b/tests/qmlchartproperties/qml/qmlchartproperties/PercentBarChart.qml
index f8c5ed34..39509d53 100644
--- a/tests/qmlchartproperties/qml/qmlchartproperties/PercentBarChart.qml
+++ b/tests/qmlchartproperties/qml/qmlchartproperties/PercentBarChart.qml
@@ -19,7 +19,7 @@
****************************************************************************/
import QtQuick 1.0
-import QtCommercial.Chart 1.0
+import QtCommercial.Chart 1.1
ChartView {
title: "Percent bar series"
@@ -33,7 +33,7 @@ ChartView {
PercentBarSeries {
id: mySeries
name: "bar"
- axisX: BarCategoriesAxis { categories: ["2007", "2008", "2009", "2010", "2011", "2012" ] }
+ axisX: BarCategoryAxis { categories: ["2007", "2008", "2009", "2010", "2011", "2012" ] }
BarSet { label: "Bob"; values: [2, 2, 3, 4, 5, 6]
onClicked: console.log("barset.onClicked: " + index);
diff --git a/tests/qmlchartproperties/qml/qmlchartproperties/PieChart.qml b/tests/qmlchartproperties/qml/qmlchartproperties/PieChart.qml
index 0c6b1819..2ba116bf 100644
--- a/tests/qmlchartproperties/qml/qmlchartproperties/PieChart.qml
+++ b/tests/qmlchartproperties/qml/qmlchartproperties/PieChart.qml
@@ -19,7 +19,7 @@
****************************************************************************/
import QtQuick 1.0
-import QtCommercial.Chart 1.0
+import QtCommercial.Chart 1.1
ChartView {
id: chart
diff --git a/tests/qmlchartproperties/qml/qmlchartproperties/ScatterChart.qml b/tests/qmlchartproperties/qml/qmlchartproperties/ScatterChart.qml
index e3765fb8..c018fc18 100644
--- a/tests/qmlchartproperties/qml/qmlchartproperties/ScatterChart.qml
+++ b/tests/qmlchartproperties/qml/qmlchartproperties/ScatterChart.qml
@@ -19,7 +19,7 @@
****************************************************************************/
import QtQuick 1.0
-import QtCommercial.Chart 1.0
+import QtCommercial.Chart 1.1
ChartView {
title: "scatter series"
diff --git a/tests/qmlchartproperties/qml/qmlchartproperties/SplineChart.qml b/tests/qmlchartproperties/qml/qmlchartproperties/SplineChart.qml
index 7b12519b..7c0afe02 100644
--- a/tests/qmlchartproperties/qml/qmlchartproperties/SplineChart.qml
+++ b/tests/qmlchartproperties/qml/qmlchartproperties/SplineChart.qml
@@ -19,7 +19,7 @@
****************************************************************************/
import QtQuick 1.0
-import QtCommercial.Chart 1.0
+import QtCommercial.Chart 1.1
ChartView {
title: "spline series"
diff --git a/tests/qmlchartproperties/qml/qmlchartproperties/StackedBarChart.qml b/tests/qmlchartproperties/qml/qmlchartproperties/StackedBarChart.qml
index 9df3fa35..e2e1d9bc 100644
--- a/tests/qmlchartproperties/qml/qmlchartproperties/StackedBarChart.qml
+++ b/tests/qmlchartproperties/qml/qmlchartproperties/StackedBarChart.qml
@@ -19,7 +19,7 @@
****************************************************************************/
import QtQuick 1.0
-import QtCommercial.Chart 1.0
+import QtCommercial.Chart 1.1
ChartView {
title: "Stacked bar series"
@@ -33,7 +33,7 @@ ChartView {
StackedBarSeries {
id: mySeries
name: "bar"
- axisX: BarCategoriesAxis { categories: ["2007", "2008", "2009", "2010", "2011", "2012" ] }
+ axisX: BarCategoryAxis { categories: ["2007", "2008", "2009", "2010", "2011", "2012" ] }
BarSet { label: "Bob"; values: [2, 2, 3, 4, 5, 6]
onClicked: console.log("barset.onClicked: " + index);
onHovered: console.log("barset.onHovered: " + status);