summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--examples/datavisualization/qmlmultigraph/doc/src/qmlmultigraph.qdoc4
-rw-r--r--examples/datavisualization/qmlmultigraph/qml/qmlmultigraph/main.qml3
2 files changed, 1 insertions, 6 deletions
diff --git a/examples/datavisualization/qmlmultigraph/doc/src/qmlmultigraph.qdoc b/examples/datavisualization/qmlmultigraph/doc/src/qmlmultigraph.qdoc
index 4d6da7ab..38c7b783 100644
--- a/examples/datavisualization/qmlmultigraph/doc/src/qmlmultigraph.qdoc
+++ b/examples/datavisualization/qmlmultigraph/doc/src/qmlmultigraph.qdoc
@@ -38,9 +38,7 @@
\snippet qmlmultigraph/qml/qmlmultigraph/main.qml 0
- Each graph has a parent \c Rectangle item to provide it with a border. The color of the rectangle
- is set to fully transparent, because otherwise the rectangles would hide the graphs, which are
- always drawn behind all other QML elements.
+ Each graph has a parent \c Rectangle item to provide it with a border.
Note that one of the grid cells is used for buttons in an another \c{GridLayout}.
*/
diff --git a/examples/datavisualization/qmlmultigraph/qml/qmlmultigraph/main.qml b/examples/datavisualization/qmlmultigraph/qml/qmlmultigraph/main.qml
index aef76823..46ff2067 100644
--- a/examples/datavisualization/qmlmultigraph/qml/qmlmultigraph/main.qml
+++ b/examples/datavisualization/qmlmultigraph/qml/qmlmultigraph/main.qml
@@ -46,7 +46,6 @@ Rectangle {
Layout.fillWidth: true
border.color: surfaceGraph.theme.gridLineColor
border.width: 2
- color: "#00000000" // Transparent
Surface3D {
id: surfaceGraph
@@ -123,7 +122,6 @@ Rectangle {
Layout.fillWidth: true
border.color: scatterGraph.theme.gridLineColor
border.width: 2
- color: "#00000000" // Transparent
Scatter3D {
id: scatterGraph
@@ -153,7 +151,6 @@ Rectangle {
Layout.fillWidth: true
border.color: barGraph.theme.gridLineColor
border.width: 2
- color: "#00000000" // Transparent
Bars3D {
id: barGraph