summaryrefslogtreecommitdiffstats
path: root/tradeshow/iot-sensortag/resources/base/MagnetometerChart.qml
diff options
context:
space:
mode:
authorTitta Heikkala <titta.heikkala@qt.io>2017-02-14 10:44:51 +0200
committerTitta Heikkala <titta.heikkala@qt.io>2017-02-14 09:35:13 +0000
commit9ba4447a1cb2cf4b5d16a604012ddbb0a04e0328 (patch)
treee457c4df0fed680c926a252a257d2af972bc8909 /tradeshow/iot-sensortag/resources/base/MagnetometerChart.qml
parentadac5cfd26e86b792574eb7751e19f072de3e400 (diff)
iot-sensortag: Use OpenGL with all charts
Gyro and MAgnetometer charts are updated to use OpenGL for series. Change-Id: Ib4f7e3c7e4bdf5015484f3849cc99ad9c1490f5f Reviewed-by: Otto Ryynänen <otto.ryynanen@qt.io>
Diffstat (limited to 'tradeshow/iot-sensortag/resources/base/MagnetometerChart.qml')
-rw-r--r--tradeshow/iot-sensortag/resources/base/MagnetometerChart.qml3
1 files changed, 3 insertions, 0 deletions
diff --git a/tradeshow/iot-sensortag/resources/base/MagnetometerChart.qml b/tradeshow/iot-sensortag/resources/base/MagnetometerChart.qml
index 05919b9..6c4ba79 100644
--- a/tradeshow/iot-sensortag/resources/base/MagnetometerChart.qml
+++ b/tradeshow/iot-sensortag/resources/base/MagnetometerChart.qml
@@ -141,6 +141,7 @@ BaseChart {
axisY: valueAxisY
color: xColor
name: "Magnet X"
+ useOpenGL: true
}
SplineSeries {
id: magnSeriesY
@@ -148,6 +149,7 @@ BaseChart {
axisY: valueAxisY
color: yColor
name: "Magnet Y"
+ useOpenGL: true
}
SplineSeries {
id: magnSeriesZ
@@ -155,6 +157,7 @@ BaseChart {
axisY: valueAxisY
color: zColor
name: "Magnet Z"
+ useOpenGL: true
}
}