summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/datavisualization/qmlspectrogram/qml/qmlspectrogram/main.qml36
1 files changed, 20 insertions, 16 deletions
diff --git a/examples/datavisualization/qmlspectrogram/qml/qmlspectrogram/main.qml b/examples/datavisualization/qmlspectrogram/qml/qmlspectrogram/main.qml
index 66fa807f..f7e93827 100644
--- a/examples/datavisualization/qmlspectrogram/qml/qmlspectrogram/main.qml
+++ b/examples/datavisualization/qmlspectrogram/qml/qmlspectrogram/main.qml
@@ -99,6 +99,7 @@ Window {
shadowQuality: AbstractGraph3D.ShadowQualityNone
selectionMode: AbstractGraph3D.SelectionSlice | AbstractGraph3D.SelectionItemAndRow
scene.activeCamera.cameraPreset: Camera3D.CameraPresetDirectlyAbove
+ scene.activeCamera.zoomLevel: 85
axisX: xAxis
axisY: yAxis
axisZ: zAxis
@@ -166,6 +167,7 @@ Window {
} else {
surfaceGraph.orthoProjection = true;
surfaceGraph.scene.activeCamera.cameraPreset = Camera3D.CameraPresetDirectlyAbove
+ surfaceSeries.drawMode &= ~Surface3DSeries.DrawWireframe;
xAxis.labelAutoRotation = 0
yAxis.labelAutoRotation = 0
zAxis.labelAutoRotation = 0
@@ -175,20 +177,6 @@ Window {
}
NewButton {
- id: surfaceGridToggle
- Layout.fillWidth: true
- Layout.fillHeight: true
- text: "Toggle surface grid"
- onClicked: {
- if (surfaceSeries.drawMode & Surface3DSeries.DrawWireframe) {
- surfaceSeries.drawMode &= ~Surface3DSeries.DrawWireframe;
- } else {
- surfaceSeries.drawMode |= Surface3DSeries.DrawWireframe;
- }
- }
- }
-
- NewButton {
id: flipGridToggle
Layout.fillWidth: true
Layout.fillHeight: true
@@ -211,13 +199,29 @@ Window {
text: "Toggle radial label position"
visible: surfaceGraph.polar
onClicked: {
- if (surfaceGraph.radialLabelOffset > 1.0) {
+ if (surfaceGraph.radialLabelOffset >= 1.0) {
surfaceGraph.radialLabelOffset = 0.01
} else {
- surfaceGraph.radialLabelOffset = 1.06
+ surfaceGraph.radialLabelOffset = 1.0
}
}
}
+
+ NewButton {
+ id: surfaceGridToggle
+ Layout.fillWidth: true
+ Layout.fillHeight: true
+ text: "Toggle surface grid"
+ visible: !surfaceGraph.orthoProjection
+ onClicked: {
+ if (surfaceSeries.drawMode & Surface3DSeries.DrawWireframe) {
+ surfaceSeries.drawMode &= ~Surface3DSeries.DrawWireframe;
+ } else {
+ surfaceSeries.drawMode |= Surface3DSeries.DrawWireframe;
+ }
+ }
+ }
+
}
Rectangle {