summaryrefslogtreecommitdiffstats
path: root/tests/qmlchartproperties/qml/qmlchartproperties/StackedBarChart.qml
diff options
context:
space:
mode:
authorTero Ahola <tero.ahola@digia.com>2012-06-11 12:17:59 +0300
committerTero Ahola <tero.ahola@digia.com>2012-06-11 12:17:59 +0300
commit78c92e3164987dc7954b61ca448ec52968a9002a (patch)
treeb442cb0b08e1113cea946490b2a20915a4a68504 /tests/qmlchartproperties/qml/qmlchartproperties/StackedBarChart.qml
parente9fe3eb4488c7faa1f5924c1311df52fd24a8578 (diff)
QML: renamed BarSet name to label, barMargin to barWidth
Diffstat (limited to 'tests/qmlchartproperties/qml/qmlchartproperties/StackedBarChart.qml')
-rw-r--r--tests/qmlchartproperties/qml/qmlchartproperties/StackedBarChart.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/qmlchartproperties/qml/qmlchartproperties/StackedBarChart.qml b/tests/qmlchartproperties/qml/qmlchartproperties/StackedBarChart.qml
index 7331d020..c8d8c473 100644
--- a/tests/qmlchartproperties/qml/qmlchartproperties/StackedBarChart.qml
+++ b/tests/qmlchartproperties/qml/qmlchartproperties/StackedBarChart.qml
@@ -32,8 +32,8 @@ ChartView {
StackedBarSeries {
id: daSeries
- BarSet { name: "Bob"; values: [2, 2, 3, 4, 5, 6] }
- BarSet { name: "Susan"; values: [5, 1, 2, 4, 1, 7] }
- BarSet { name: "James"; values: [3, 5, 8, 13, 5, 8] }
+ BarSet { label: "Bob"; values: [2, 2, 3, 4, 5, 6] }
+ BarSet { label: "Susan"; values: [5, 1, 2, 4, 1, 7] }
+ BarSet { label: "James"; values: [3, 5, 8, 13, 5, 8] }
}
}