summaryrefslogtreecommitdiffstats
path: root/tradeshow/iot-sensortag/resources
diff options
context:
space:
mode:
Diffstat (limited to 'tradeshow/iot-sensortag/resources')
-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
}
}