From 8bf7f77d5c97a58c987e03598312164e009eee98 Mon Sep 17 00:00:00 2001 From: Titta Heikkala Date: Fri, 24 Feb 2017 11:59:17 +0200 Subject: iot-sensortag: Remove Glow effect MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Glow effect removed from ChartView elements. Change-Id: I4a020c783c715c45c8d10663c8f2828d7f10bdd5 Reviewed-by: Kari Hautamäki --- tradeshow/iot-sensortag/resources/base/GyroChart.qml | 11 +++-------- tradeshow/iot-sensortag/resources/base/MagnetometerChart.qml | 11 +++-------- tradeshow/iot-sensortag/resources/base/TemperatureChart.qml | 10 +--------- 3 files changed, 7 insertions(+), 25 deletions(-) (limited to 'tradeshow') 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 } } -- cgit v1.2.3