summaryrefslogtreecommitdiffstats
path: root/tradeshow
diff options
context:
space:
mode:
authorTitta Heikkala <titta.heikkala@qt.io>2017-02-24 11:59:17 +0200
committerKari Hautamäki <kari.hautamaki@qt.io>2017-02-24 10:51:54 +0000
commit8bf7f77d5c97a58c987e03598312164e009eee98 (patch)
tree7046231234ecdc8da23766c04b16f74ac7bd1d05 /tradeshow
parent05902a3a95e9c16623df3da78bc4b5b0d477871d (diff)
iot-sensortag: Remove Glow effect
Glow effect removed from ChartView elements. Change-Id: I4a020c783c715c45c8d10663c8f2828d7f10bdd5 Reviewed-by: Kari Hautamäki <kari.hautamaki@qt.io>
Diffstat (limited to 'tradeshow')
-rw-r--r--tradeshow/iot-sensortag/resources/base/GyroChart.qml11
-rw-r--r--tradeshow/iot-sensortag/resources/base/MagnetometerChart.qml11
-rw-r--r--tradeshow/iot-sensortag/resources/base/TemperatureChart.qml10
3 files changed, 7 insertions, 25 deletions
diff --git a/tradeshow/iot-sensortag/resources/base/GyroChart.qml b/tradeshow/iot-sensortag/resources/base/GyroChart.qml
index f7d2b71..78ee163 100644
--- a/tradeshow/iot-sensortag/resources/base/GyroChart.qml
+++ b/tradeshow/iot-sensortag/resources/base/GyroChart.qml
@@ -83,14 +83,6 @@ BaseChart {
}
}
- Glow {
- anchors.fill: chartView
- radius: 18
- samples: 30
- color: "#e91632"
- source: chartView
- }
-
ChartView {
id: chartView
@@ -128,6 +120,7 @@ BaseChart {
color: xColor
name: "Gyro X"
useOpenGL: true
+ width: 2
}
SplineSeries {
id: gyroSeriesY
@@ -136,6 +129,7 @@ BaseChart {
color: yColor
name: "Gyro Y"
useOpenGL: true
+ width: 2
}
SplineSeries {
id: gyroSeriesZ
@@ -144,6 +138,7 @@ BaseChart {
color: zColor
name: "Gyro Z"
useOpenGL: true
+ width: 2
}
}
diff --git a/tradeshow/iot-sensortag/resources/base/MagnetometerChart.qml b/tradeshow/iot-sensortag/resources/base/MagnetometerChart.qml
index 29458f6..cf4a409 100644
--- a/tradeshow/iot-sensortag/resources/base/MagnetometerChart.qml
+++ b/tradeshow/iot-sensortag/resources/base/MagnetometerChart.qml
@@ -77,14 +77,6 @@ BaseChart {
}
}
- Glow {
- anchors.fill: chartView
- radius: 18
- samples: 30
- color: zColor
- source: chartView
- }
-
ChartView {
id: chartView
@@ -122,6 +114,7 @@ BaseChart {
color: xColor
name: "Magnet X"
useOpenGL: true
+ width: 2
}
LineSeries {
id: magnSeriesY
@@ -130,6 +123,7 @@ BaseChart {
color: yColor
name: "Magnet Y"
useOpenGL: true
+ width: 2
}
LineSeries {
id: magnSeriesZ
@@ -138,6 +132,7 @@ BaseChart {
color: zColor
name: "Magnet Z"
useOpenGL: true
+ width: 2
}
}
diff --git a/tradeshow/iot-sensortag/resources/base/TemperatureChart.qml b/tradeshow/iot-sensortag/resources/base/TemperatureChart.qml
index 7ecaf66..dbad24b 100644
--- a/tradeshow/iot-sensortag/resources/base/TemperatureChart.qml
+++ b/tradeshow/iot-sensortag/resources/base/TemperatureChart.qml
@@ -152,14 +152,6 @@ BaseChart {
anchors.verticalCenter: parent.verticalCenter
}
- Glow {
- anchors.fill: chartView
- radius: 18
- samples: 30
- color: "#15bdff"
- source: chartView
- }
-
ChartView {
id: chartView
@@ -201,7 +193,7 @@ BaseChart {
axisX: valueAxisX
axisY: valueAxisY
color: chartColor
- width: 1
+ width: 2
useOpenGL: true
}
}