summaryrefslogtreecommitdiffstats
path: root/examples/qmlscatter
diff options
context:
space:
mode:
Diffstat (limited to 'examples/qmlscatter')
-rw-r--r--examples/qmlscatter/doc/src/qmlscatter.qdoc7
-rw-r--r--examples/qmlscatter/qml/qmlscatter/main.qml1
2 files changed, 6 insertions, 2 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:
diff --git a/examples/qmlscatter/qml/qmlscatter/main.qml b/examples/qmlscatter/qml/qmlscatter/main.qml
index 22eab76b..62727f84 100644
--- a/examples/qmlscatter/qml/qmlscatter/main.qml
+++ b/examples/qmlscatter/qml/qmlscatter/main.qml
@@ -26,7 +26,6 @@ import "."
//! [1]
Item {
id: mainView
- visible: true
//! [1]
//! [4]