summaryrefslogtreecommitdiffstats
path: root/examples/qmlscatter/doc/src/qmlscatter.qdoc
diff options
context:
space:
mode:
authorMika Salmela <mika.salmela@digia.com>2013-12-20 12:03:59 +0200
committerMika Salmela <mika.salmela@digia.com>2013-12-20 12:05:37 +0200
commiteb3d0514ca886db33776522ea00f27b69bc86ad1 (patch)
tree3439287f6a70f681c5c9a08c77ec1b4342a24768 /examples/qmlscatter/doc/src/qmlscatter.qdoc
parent07aba602fc82ac31684988f8e8e22521d2b3c982 (diff)
parente895c5085f6097983bdd617c39ea5184541d6c4d (diff)
Merge branch 'develop'
Diffstat (limited to 'examples/qmlscatter/doc/src/qmlscatter.qdoc')
-rw-r--r--examples/qmlscatter/doc/src/qmlscatter.qdoc7
1 files changed, 6 insertions, 1 deletions
diff --git a/examples/qmlscatter/doc/src/qmlscatter.qdoc b/examples/qmlscatter/doc/src/qmlscatter.qdoc
index b0f1fd1f..06719ffc 100644
--- a/examples/qmlscatter/doc/src/qmlscatter.qdoc
+++ b/examples/qmlscatter/doc/src/qmlscatter.qdoc
@@ -86,10 +86,15 @@
The last \c import just imports all the qml files in the same directory as our \c {main.qml},
because that's where \c newbutton.qml and \c data.qml are.
- Then we create our main \c Item, call it \c mainView and set it visible:
+ Then we create our main \c Item and call it \c mainView:
\snippet ../examples/qmlscatter/qml/qmlscatter/main.qml 1
+ \note The Qt Creator application wizard will set a \c Rectangle item as the main item, which
+ is opaque white by default. This doesn't work for us, because the graphs are rendered behind the other
+ QML elements. We change the main item type to \c Item, which is invisible. This way the graph is
+ not covered by the main item.
+
Then we'll add another \c Item inside it, and call it \c dataView. This will be the item to hold
the Scatter3D graph. We'll anchor it to the parent bottom: